summaryrefslogtreecommitdiffstats
path: root/.local/bin/status/sb-mpd
diff options
context:
space:
mode:
Diffstat (limited to '.local/bin/status/sb-mpd')
-rwxr-xr-x.local/bin/status/sb-mpd11
1 files changed, 0 insertions, 11 deletions
diff --git a/.local/bin/status/sb-mpd b/.local/bin/status/sb-mpd
deleted file mode 100755
index 21bf2c7..0000000
--- a/.local/bin/status/sb-mpd
+++ /dev/null
@@ -1,11 +0,0 @@
-#!/bin/sh
-
-return
-mp=$(mpc status)
-icon=$(echo "$mp" | sed -n 2p | sed -E 's/(^|\])[^[]*($|\[)//g')
-case $icon in
- "playing") icon="契" ;;
- "paused") icon="" ;;
- *) return ;;
-esac
-printf "%s %s" "$icon" "$(echo "$mp" | head -n1)"