11 lines
124 B
Bash
Executable File
11 lines
124 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if pgrep -x picom
|
|
then
|
|
pkill picom
|
|
else
|
|
picom &>/dev/null &
|
|
fi
|
|
|
|
polybar-msg action picom-status hook 0
|