diff options
author | Mathias Magnusson <mathias@magnusson.space> | 2025-06-29 22:28:05 +0200 |
---|---|---|
committer | Mathias Magnusson <mathias@magnusson.space> | 2025-06-29 22:47:23 +0200 |
commit | a0b32034f7c557bcaa38e3610c8a97eeee7a00a8 (patch) | |
tree | 3f4f1b7252958ccd8fa3158a35aeb34cdacf94c1 /dot-local-bin/wp-vol | |
download | sleipner-a0b32034f7c557bcaa38e3610c8a97eeee7a00a8.tar.gz |
Initial commit
Diffstat (limited to 'dot-local-bin/wp-vol')
-rwxr-xr-x | dot-local-bin/wp-vol | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/dot-local-bin/wp-vol b/dot-local-bin/wp-vol new file mode 100755 index 0000000..4ae235c --- /dev/null +++ b/dot-local-bin/wp-vol @@ -0,0 +1,8 @@ +#!/usr/bin/env fish + +wpctl set-volume @DEFAULT_AUDIO_SINK@ $argv[1] + +# Get the volume level and convert it to a percentage +set volume (math -s0 -mround (wpctl get-volume @DEFAULT_AUDIO_SINK@ | awk '{print $2}') "*" 100) + +notify-send -t 1000 -a 'wp-vol' -h int:value:$volume " $volume" |