mabox-tools/bin/compton_toggle

27 lines
657 B
Bash
Executable File

#!/bin/bash
case "$LANG" in
pl*)
DISABLED="Kompozytor Picom zastał WYŁĄCZONY"
ENABLED="Kompozytor Picom został URUCHOMIONY"
;;
*)
DISABLED="Picom compositor DISABLED"
ENABLED="Picom compositor ENABLED"
;;
esac
if [ $(pidof picom) ]; then
killall picom
notify-send -i compton -t 5000 "Compositor" "$DISABLED"
else
CONFIGFILE="$HOME/.config/picom.conf"
if [ -f "$CONFIGFILE" ];then
picom --config "$CONFIGFILE" &
notify-send -i compton -t 5000 "Compositor" "$ENABLED"
else
picom --config /dev/null &
notify-send -i compton -t 5000 "Compositor" "$ENABLED"
fi
fi
exit