about summary refs log tree commit diff
path: root/scripts/mpc-play-pause.sh
blob: 6c82377a2c478cd7a7ab85811c3dc97814e8bad0 (plain) (blame)
1
2
3
4
5
6
7
8
#!/bin/sh

if mpc | grep -q '\[playing\]'
then
    mpc pause
else
    mpc play
fi

Consider giving Nix/NixOS a try! <3