aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/dot_config/waybar
diff options
context:
space:
mode:
authorLibravatar sommerfeld <sommerfeld@sommerfeld.dev>2026-05-13 13:43:32 +0100
committerLibravatar sommerfeld <sommerfeld@sommerfeld.dev>2026-05-13 13:43:32 +0100
commit1f67b2163c19c931419385216a29f9162fa23ad4 (patch)
tree7d2baeee5e3acd594bfb365a0dc8e614bdf75d93 /dot_config/waybar
parent5e8df71b02e7cd0d663556cfde60ab8dc8e26f4b (diff)
downloaddotfiles-1f67b2163c19c931419385216a29f9162fa23ad4.tar.gz
dotfiles-1f67b2163c19c931419385216a29f9162fa23ad4.tar.bz2
dotfiles-1f67b2163c19c931419385216a29f9162fa23ad4.zip
fix(webcam-status): silence SC2086 on intentional word-splitting
Diffstat (limited to 'dot_config/waybar')
-rw-r--r--dot_config/waybar/executable_webcam-status.sh1
1 files changed, 1 insertions, 0 deletions
diff --git a/dot_config/waybar/executable_webcam-status.sh b/dot_config/waybar/executable_webcam-status.sh
index f55a2d0..2441039 100644
--- a/dot_config/waybar/executable_webcam-status.sh
+++ b/dot_config/waybar/executable_webcam-status.sh
@@ -11,6 +11,7 @@ esac
# fuser exits 0 when at least one device has an opener, 1 otherwise. Stderr
# carries 'PID' for each match; redirect it away.
+# shellcheck disable=SC2086 # $devs is an intentional space-separated list of paths
if fuser $devs >/dev/null 2>&1; then
printf '{"text":"󰕧","tooltip":"webcam in use","class":"active","alt":"active"}\n'
else