Compare commits

..

2 commits

Author SHA1 Message Date
Gabe Venberg eae2664fd6 some ajustments to status bar. 2024-04-12 21:44:37 -05:00
Gabe Venberg f673c4543e added volume bar to playerctl statuses. 2024-04-12 17:07:37 -05:00
2 changed files with 7 additions and 6 deletions

View file

@ -155,13 +155,13 @@
''; '';
"${mod}+mod1+p" = '' "${mod}+mod1+p" = ''
exec --no-startup-id "playerctl play-pause" exec --no-startup-id "playerctl play-pause; dunstify -h string:x-dunst-stack-tag:playerstatus --timeout=500 Player $(playerctl status)"
''; '';
"${mod}+mod1+plus" = '' "${mod}+mod1+plus" = ''
exec --no-startup-id "playerctl volume -- +0.1; dunstify -h string:x-dunst-stack-tag:playervol --timeout=500 Player $(playerctl volume)" exec --no-startup-id "playerctl volume 0.01+; dunstify -h string:x-dunst-stack-tag:volume --timeout=500 -h int:value:$(playerctl volume | cut -d' ' -f2 | awk '{print $1*100}' ) Player"
''; '';
"${mod}+mod1+minus" = '' "${mod}+mod1+minus" = ''
exec --no-startup-id "playerctl volume -- -0.1; dunstify -h string:x-dunst-stack-tag:playervol --timeout=500 Player $(playerctl volume)" exec --no-startup-id "playerctl volume 0.01-; dunstify -h string:x-dunst-stack-tag:volume --timeout=500 -h int:value:$(playerctl volume | cut -d' ' -f2 | awk '{print $1*100}' ) Player"
''; '';
#open volume control #open volume control

View file

@ -54,6 +54,7 @@
{ {
block = "battery"; block = "battery";
driver = "upower"; driver = "upower";
device = "DisplayDevice";
format = "$icon $percentage {$time|}"; format = "$icon $percentage {$time|}";
} }
) )