Add volume scripts

This commit is contained in:
2022-08-23 15:29:45 +02:00
parent a8b0fed1a1
commit a4d3d0113e
3 changed files with 17 additions and 0 deletions

4
tree/.local/bin/voldown Executable file
View File

@ -0,0 +1,4 @@
#!/bin/sh
pactl set-sink-volume @DEFAULT_SINK@ -5%
volshow

9
tree/.local/bin/volshow Executable file
View File

@ -0,0 +1,9 @@
#!/bin/sh
alacritty -t "Volume" \
--class "volume_indicator" \
--config-file "$HOME/.config/alacritty/silent.yml" \
--command volume_indicator \
--cols 30 \
--rows 3 \
--timeout 1000

4
tree/.local/bin/volup Executable file
View File

@ -0,0 +1,4 @@
#!/bin/sh
pactl set-sink-volume @DEFAULT_SINK@ +5%
volshow