diff options
| author | Christoph <code@c.onl> | 2025-11-10 20:49:36 +0100 |
|---|---|---|
| committer | Christoph <code@c.onl> | 2025-11-10 21:05:15 +0100 |
| commit | e68724182cd1e6b8f5be723cf6d0772f238ca526 (patch) | |
| tree | b604a364a2824bd8e688fd6d9be01bf6a3cf1f83 /polybar | |
| parent | 396eaa2bda6ac4f2f7dad7cfa52f5343f8342192 (diff) | |
| download | dots-e68724182cd1e6b8f5be723cf6d0772f238ca526.tar.gz | |
polybar: Ignore stderr on OpenBSD volume
Diffstat (limited to 'polybar')
| -rwxr-xr-x | polybar/OpenBSD-vol.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/polybar/OpenBSD-vol.sh b/polybar/OpenBSD-vol.sh index ff083f2..8cc7925 100755 --- a/polybar/OpenBSD-vol.sh +++ b/polybar/OpenBSD-vol.sh @@ -1,7 +1,7 @@ #!/usr/bin/env bash function sndio_val() { - sndioctl "$1" | awk -F'=' '{print $2}' + sndioctl "$1" 2> /dev/null | awk -F'=' '{print $2}' } while true; do |