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

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

Consider giving Nix/NixOS a try! <3