10 lines
127 B
Bash
10 lines
127 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
DIR=$(readlink -f $(dirname $0))
|
||
|
|
||
|
if pgrep -x picom > /dev/null; then
|
||
|
killall -q picom
|
||
|
else
|
||
|
$DIR/launch.sh
|
||
|
fi
|