5 lines
75 B
Text
5 lines
75 B
Text
|
|
#!/usr/bin/fish
|
||
|
|
if ps -aux | grep picom | grep -v grep
|
||
|
|
pkill picom
|
||
|
|
end
|