9 lines
89 B
Bash
Executable File
9 lines
89 B
Bash
Executable File
#!/bin/bash
|
|
|
|
pid=$(pgrep -x picom)
|
|
if [ -z "$pid" ]; then
|
|
picom -b
|
|
else
|
|
kill $pid
|
|
fi
|