11 lines
224 B
Fish
Executable file
11 lines
224 B
Fish
Executable file
#!/usr/bin/fish
|
|
if ps -aux | grep picom | grep -v grep
|
|
pkill picom
|
|
end
|
|
|
|
sleep 0.2
|
|
picom \
|
|
--conf /dev/null \
|
|
-i 0.8 \
|
|
--active-opacity 1.0 \
|
|
--focus-exclude "x = 0 && y = 0 && override_redirect = true" &
|