mirror of
https://gitgud.io/Melon__Bread/gnu-plus-dotfiles.git
synced 2025-02-23 12:53:08 -05:00
8 lines
123 B
Bash
8 lines
123 B
Bash
|
#!/bin/bash
|
||
|
if pgrep -x "picom" > /dev/null
|
||
|
then
|
||
|
killall picom
|
||
|
else
|
||
|
picom -b --config ~/.config/picom/picom-blur.conf
|
||
|
fi
|