mirror of
https://gitlab.com/Zaney/zaneyos.git
synced 2024-12-26 23:28:49 +01:00
16 lines
395 B
Nix
16 lines
395 B
Nix
|
{ pkgs, ... }:
|
||
|
|
||
|
pkgs.writeShellScriptBin "idle-switcher" ''
|
||
|
IDLECOMMAND=$(swayidle -w timeout 5 'hyprctl dispatch dpms off' resume 'hyprctl dispatch dpms on')
|
||
|
|
||
|
if [ $SWAYIDLESTATE == "1" ]; then
|
||
|
SWAYIDLESTATE="2"
|
||
|
notify-send -t 2500 "Killing SwayIdle Sir."
|
||
|
killall swayidle
|
||
|
else
|
||
|
SWAYIDLESTATE="1"
|
||
|
notify-send -t 2500 "Starting SwayIdle Sir."
|
||
|
$IDLECOMMAND
|
||
|
fi
|
||
|
''
|