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