summaryrefslogtreecommitdiff
path: root/.local/bin/desktop/toggle-xeyes
blob: af5c590b057878c5546c39f365531ddb503c4b07 (plain)
1
2
3
4
5
6
7
#!/bin/sh

if pidof -q xeyes; then
	killall xeyes
else
	setsid -f xeyes
fi