blob: 57c2606193ecf4940b8a86d812dc73f3d506311f (
plain)
1
2
3
4
5
6
7
|
#!/bin/sh
# Toggle and report status of shuffle mode in cmus
cmus-remote --shuffle
status=$(cmus-remote -Q | grep shuffle | cut -d ' ' -f 3)
dunstctl close-all
[ "$status" = "true" ] && notify-send "Shuffle on" || notify-send "Shuffle off"
|