.dotfiles/pkgs/flake/swarsel-displaypower/default.nix
2026-03-06 00:51:55 +01:00

9 lines
245 B
Nix

{ name, writeShellApplication, sway, ... }:
writeShellApplication {
inherit name;
runtimeInputs = [ sway ];
text = ''
swaymsg "output * power on" > /dev/null 2>&1 || true
swaymsg "output * dpms on" > /dev/null 2>&1 || true
'';
}