mirror of
https://github.com/LukeSmithxyz/voidrice.git
synced 2026-03-20 01:37:45 +01:00
10 lines
162 B
Bash
Executable File
10 lines
162 B
Bash
Executable File
#!/bin/bash
|
|
if [ -f $(pgrep mpd) ];
|
|
then
|
|
echo "mpd not yet active. Activating."
|
|
mpd && urxvt -e ncmpcpp
|
|
else
|
|
echo "mpd already active."
|
|
urxvt -e ncmpcpp
|
|
fi
|