diff options
author | Amin Bandali <bandali@kelar.org> | 2024-08-30 17:54:01 -0400 |
---|---|---|
committer | Amin Bandali <bandali@kelar.org> | 2024-08-30 17:54:01 -0400 |
commit | 63879fc37e2b7e7f4d6069dfc287a85ee758b1f8 (patch) | |
tree | 8451cb5c68db1ce7c548325578a44d1a7a236f4f /.local/bin | |
parent | dcb96b515fa65eee556df976375692cef48db21d (diff) | |
download | configs-63879fc37e2b7e7f4d6069dfc287a85ee758b1f8.tar.gz configs-63879fc37e2b7e7f4d6069dfc287a85ee758b1f8.tar.xz configs-63879fc37e2b7e7f4d6069dfc287a85ee758b1f8.zip |
Various updates from anahita
Diffstat (limited to '.local/bin')
-rwxr-xr-x | .local/bin/b-bar | 1 | ||||
-rwxr-xr-x | .local/bin/dmenu-pamixer | 4 | ||||
-rwxr-xr-x | .local/bin/dmenu-pavols | 4 |
3 files changed, 5 insertions, 4 deletions
diff --git a/.local/bin/b-bar b/.local/bin/b-bar index cfcd4cc..8f23563 100755 --- a/.local/bin/b-bar +++ b/.local/bin/b-bar @@ -17,6 +17,7 @@ do ;; *) b0="/sys/class/power_supply/BAT0" + [ "$h" = "anahita" ] && b0="/sys/class/power_supply/sbs-9-000b" bat="$(cat $b0/capacity)" # batl="$(cat $b0/capacity_level)" printf "%s%% | %s | %s | %s\n" \ diff --git a/.local/bin/dmenu-pamixer b/.local/bin/dmenu-pamixer deleted file mode 100755 index cd5926a..0000000 --- a/.local/bin/dmenu-pamixer +++ /dev/null @@ -1,4 +0,0 @@ -#!/bin/sh -cur=$(pamixer --get-volume) -val=$(dmenu -fn 'Source Code Pro Medium-10.5' -p "volume ($cur):" < /dev/null) -[ -n "$val" ] && pamixer --set-volume "$val" diff --git a/.local/bin/dmenu-pavols b/.local/bin/dmenu-pavols new file mode 100755 index 0000000..0b840ad --- /dev/null +++ b/.local/bin/dmenu-pavols @@ -0,0 +1,4 @@ +#!/bin/sh +cur=$(pactl get-sink-volume @DEFAULT_SINK@ | grep -Po '\d+(?=%)' | head -n1) +val=$(dmenu -fn 'Source Code Pro Medium-10.5' -p "volume ($cur):" < /dev/null) +[ -n "$val" ] && pactl set-sink-volume @DEFAULT_SINK@ "${val}%" |