8 lines
98 B
Bash
8 lines
98 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
if ps -A | grep picom; then
|
||
|
killall -q picom
|
||
|
fi
|
||
|
|
||
|
picom --experimental-backends
|