Ahwxorg/modules/home/scripts/scripts/caffeine
2025-12-26 20:13:07 +01:00

11 lines
226 B
Bash
Executable file

#!/usr/bin/env bash
CAFFEINE_FILE="$HOME/.config/hypr/caffeine_mode"
if [ -f "$CAFFEINE_FILE" ]; then
rm "$CAFFEINE_FILE"
notify-send "Caffeine" "Disabled"
else
touch "$CAFFEINE_FILE"
notify-send "Caffeine" "Enabled"
fi