nix/module/sway/module/Brightness.nix

9 lines
186 B
Nix

{ setting, ... }: let
step = setting.brightness.step;
in {
text = ''
bindsym XF86MonBrightnessDown exec light -U ${step}
bindsym XF86MonBrightnessUp exec light -A ${step}
'';
}