lemonbar-config/lemonsong-status

11 lines
202 B
Plaintext
Raw Normal View History

2020-12-13 12:51:52 +01:00
#!/bin/sh
status=$(mpc status | sed -n '/playing/p' | cut -c2-8 | sed 's/^[ \t]*//')
if [ "$status" = "playing" ]; then # If song is playing
printf "%s\n" "S契"
else
printf "%s\n" "S"
fi