nixos-config/modules/home-manager/ricing/awesomewm/dotfiles/misc/scripts/picom
2024-07-12 18:19:30 +09:00

14 lines
171 B
Bash

#!/usr/bin/env bash
toggle(){
if [[ ! `pidof picom` ]]; then
picom &
else
pkill -9 picom
fi
}
if [[ $1 == "--toggle" ]]; then
toggle
fi