aboutsummaryrefslogtreecommitdiff
path: root/fish/.config/fish/functions/music.fish
blob: 0f54f0fdf72af8c0ccdcac89a7c68ecf77e2f2d9 (plain)
1
2
3
4
5
6
7
8
9
function music --description "ncmpcpp launcher"
	ps -e | grep mpd > /dev/null

	if test $status -eq 1
		mpd ~/.config/mpd/mpd.conf
	end

	ncmpcpp
end