feat(niri): XF86 keysym actions

This commit is contained in:
js0ny 2025-11-11 04:33:45 +00:00
parent 40f9eeed47
commit 73c6e134ad
11 changed files with 478 additions and 306 deletions

View file

@ -40,4 +40,16 @@
description = "Default icon theme";
};
};
options.currentHost = {
keyboardBacklightDevice = lib.mkOption {
type = lib.types.str;
default = "";
description = "Device Identifier that used for brightnessctl, get the identifier via brightnessctl --list";
};
keyboardBacklightStep = lib.mkOption {
type = lib.types.str;
default = "34%";
description = "Step to change keyboard backlight, integer or percentage accepted";
};
};
}