dotfiles/config/picom/toggle.fish

9 lines
144 B
Fish
Raw Normal View History

2020-04-27 06:47:36 +00:00
#!/usr/bin/env fish
if pgrep -x picom > /dev/null
killall -q picom
else
set dir (dirname (status --current-filename))
$dir/launch.sh
end