commit 4b630a42ef1583f19fc758abf50ff788508f6285 parent d93a36ee331387013303980584c638a6874a91ba Author: Chris <chris@echoz.io> Date: Thu, 9 Oct 2025 02:19:41 +0200 feat: add some key bindings to glirc Diffstat:
| M | modules/glirc/default.nix | | | 16 | ++++++++++++++++ |
1 file changed, 16 insertions(+), 0 deletions(-)
diff --git a/modules/glirc/default.nix b/modules/glirc/default.nix @@ -26,6 +26,22 @@ xdg.configFile."glirc/config" = lib.mkIf (cfg.extraConfig != null) { text = cfg.extraConfig; }; + + programs.glirc.extraConfig = lib.mkBefore '' + key-bindings: + * bind: "C-d" + action: scroll-down-small + * bind: "C-u" + action: scroll-up-small + * bind: "C-f" + action: scroll-down + * bind: "C-b" + action: scroll-up + * bind: "C-a" + action: jump-to-activity + * bind: "C-s" + action: jump-to-previous + ''; }; }; }