Fix dotfiles structure

This commit is contained in:
2026-03-15 10:32:59 +05:30
parent ca014e9949
commit a2c3404cb2
2557 changed files with 148415 additions and 0 deletions

13
.config/polybar/caffine.sh Executable file
View File

@@ -0,0 +1,13 @@
#!/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