9 lines
144 B
Fish
9 lines
144 B
Fish
|
#!/usr/bin/env fish
|
||
|
|
||
|
if pgrep -x picom > /dev/null
|
||
|
killall -q picom
|
||
|
else
|
||
|
set dir (dirname (status --current-filename))
|
||
|
$dir/launch.sh
|
||
|
end
|