From 82df70eff06e7b44ee84283070d7f801f7fc1d92 Mon Sep 17 00:00:00 2001 From: Sam Chudnick Date: Sat, 6 Nov 2021 20:25:45 -0400 Subject: initial commit --- .local/bin/cmus/toggle-shuf | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100755 .local/bin/cmus/toggle-shuf (limited to '.local/bin/cmus/toggle-shuf') diff --git a/.local/bin/cmus/toggle-shuf b/.local/bin/cmus/toggle-shuf new file mode 100755 index 0000000..57c2606 --- /dev/null +++ b/.local/bin/cmus/toggle-shuf @@ -0,0 +1,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" -- cgit v1.2.3