Files
dotfiles/.config/polybar/caffine.sh
2026-03-15 10:32:59 +05:30

14 lines
524 B
Bash
Executable File

#!/bin/env bash
status=`xfconf-query -c xfce4-power-manager -p /xfce4-power-manager/presentation-mode -v`
if [ $status == 'false' ];
then
polybar-msg hook caffeine 2
xfconf-query -c xfce4-power-manager -p /xfce4-power-manager/presentation-mode -T && \
notify-send --icon=gtk Test 'Caffeine Enabled!'
else
polybar-msg hook caffeine 1
xfconf-query -c xfce4-power-manager -p /xfce4-power-manager/presentation-mode -T && \
notify-send --icon=gtk Test 'Caffeine Disabled!'
fi