mirror of
https://github.com/Ahwxorg/nixos-config.git
synced 2026-01-12 01:28:14 +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
|