mirror of
https://github.com/Swarsel/.dotfiles.git
synced 2026-04-14 21:29:12 +02:00
9 lines
245 B
Nix
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
|
|
'';
|
|
}
|