scripts/i3spotify

11 lines
143 B
Plaintext
Raw Normal View History

2019-03-22 15:25:10 +00:00
#!/usr/bin/env bash
SPOTPID="$(pgrep -x spotify)"
if [[ -z $SPOTPID ]]; then
spotify & > /dev/null
else
i3-msg workspace "100:spotify"
fi