diff options
author | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2024-12-30 22:41:00 +0100 |
---|---|---|
committer | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2024-12-30 22:41:00 +0100 |
commit | 07229574e2e0feef3e4984025d9b2b9a6776f51d (patch) | |
tree | 4e94a2b47fa4f38f98959efae6eb250a4207701b /modules/home.legacy/wms/river/res/moonlander.ron | |
parent | build(treewide): Update (diff) | |
download | nixos-config-07229574e2e0feef3e4984025d9b2b9a6776f51d.zip |
feat(modules/legacy/river): Add mapping to start `qmk-unicode-type`
That program communicates with my keyboard and sets a Unicode character.
Diffstat (limited to '')
-rw-r--r-- | modules/home.legacy/wms/river/res/moonlander.ron | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/modules/home.legacy/wms/river/res/moonlander.ron b/modules/home.legacy/wms/river/res/moonlander.ron index 77ffa5c4..4051635f 100644 --- a/modules/home.legacy/wms/river/res/moonlander.ron +++ b/modules/home.legacy/wms/river/res/moonlander.ron @@ -40,13 +40,15 @@ RiverctlCommandArray( RiverctlCommand( map_mode: Map, mode: ["normal"], key: "W", mods: "Alt+Control+Super+Shift", command: "send-to-previous-tags",command_args: None,), //RiverctlCommand( map_mode: Map, mode: ["normal"], key: "X", mods: "Alt+Control+Super+Shift", command: "spawn", command_args: "bemenu-run",), //RiverctlCommand( map_mode: Map, mode: ["normal"], key: "Y", mods: "Alt+Control+Super+Shift", command: "spawn", command_args: "bemenu-run",), - //RiverctlCommand( map_mode: Map, mode: ["normal"], key: "Z", mods: "Alt+Control+Super+Shift", command: "spawn", command_args: "bemenu-run",), // Toggle all tags RiverctlCommand( map_mode: Map, mode: ["normal"], key: "0", mods: "Alt+Control+Super+Shift", command: "set-focused-tags", command_args: "4294967295"), RiverctlCommand( map_mode: Map, mode: ["normal"], key: "0", mods: "Alt+Control+Shift", command: "set-view-tags", command_args: "4294967295"), + // Support Unicode input + RiverctlCommand( map_mode: Map, mode: ["normal"], key: "Z", mods: "Alt+Control+Super+Shift", command: "spawn", command_args: "qmk-unicode-type",), + // Mouse RiverctlCommand( map_mode: MapMouse, mode: ["normal"], key: "BTN_LEFT", mods: "Super", command: "move-view", command_args: None,), RiverctlCommand( map_mode: MapMouse, mode: ["normal"], key: "BTN_RIGHT", mods: "Super", command: "resize-view", command_args: None,), |