mirror of
https://github.com/elenapan/dotfiles.git
synced 2025-12-28 08:14:57 +08:00
Former-commit-id: 99582f4b43
Former-commit-id: 3092e409f5a98198f69b18101aef9cb525d87538
Former-commit-id: b2b953c7175571fbf155ffc49390b1825bdfc5a6
15 lines
No EOL
369 B
Bash
Executable file
15 lines
No EOL
369 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# Get mpd state
|
|
MPDSTATE="$(mpc | head -2 | tail -1 | awk '{print $1}')"
|
|
|
|
if [[ "$MPDSTATE" != "[playing]" ]]; then
|
|
# echo " ·| "
|
|
echo ""
|
|
else
|
|
# echo " ·> "
|
|
echo ""
|
|
# echo ""
|
|
SONG="$(mpc | head -1)"
|
|
notify-send "Now playing:" "$SONG" -i ~/.icons/oomox-wally-flat/actions/scalable/player_play.svg --replace-file /tmp/mpd_notification_id
|
|
fi |