mirror of
https://github.com/Ahwxorg/nixos-config.git
synced 2026-04-12 06:45:13 +08:00
11 lines
226 B
Bash
Executable file
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
|