7 lines
75 B
Bash
7 lines
75 B
Bash
|
#!/bin/sh
|
||
|
if [ "$(pgrep picom)" ];then
|
||
|
pkill picom
|
||
|
else
|
||
|
picom &
|
||
|
fi
|