diff options
author | Soispha <soispha@vhack.eu> | 2023-10-27 21:31:29 +0200 |
---|---|---|
committer | Soispha <soispha@vhack.eu> | 2023-10-27 21:31:29 +0200 |
commit | 3134d5e5018f5e43df2926adf5b0bfa62d8ad6c1 (patch) | |
tree | 238e23d3bb2d9bbd6294ffc73abc3b34c537ec8f /hm | |
parent | feat(hm/pkgs/src/neorg): Use rofi as profile picker (diff) | |
download | nixos-config-3134d5e5018f5e43df2926adf5b0bfa62d8ad6c1.tar.gz nixos-config-3134d5e5018f5e43df2926adf5b0bfa62d8ad6c1.zip |
feat(hm/wms/river/keys): Use rofi in the mappings
Diffstat (limited to '')
-rw-r--r-- | hm/soispha/wms/river/res/keys.ron | 5 | ||||
-rw-r--r-- | hm/soispha/wms/river/res/moonlander.ron | 8 |
2 files changed, 7 insertions, 6 deletions
diff --git a/hm/soispha/wms/river/res/keys.ron b/hm/soispha/wms/river/res/keys.ron index a2254b50..e31edc22 100644 --- a/hm/soispha/wms/river/res/keys.ron +++ b/hm/soispha/wms/river/res/keys.ron @@ -20,8 +20,8 @@ RiverctlCommandArray( RiverctlCommand( map_mode: Map, mode: ["normal", "locked"], key: "XF86AudioMute", mods: "None", command: "spawn", command_args: "mpc toggle",), // Launcher - RiverctlCommand( map_mode: Map, mode: ["normal"], key: "R", mods: "Super", command: "spawn", command_args: "bemenu-run",), - RiverctlCommand( map_mode: Map, mode: ["normal"], key: "F1", mods: "Super", command: "spawn", command_args: "firefox",), + RiverctlCommand( map_mode: Map, mode: ["normal"], key: "R", mods: "Super", command: "spawn", command_args: "rofi -show combi -modes combi -combi-modes 'window,drun,run' -show-icons",), + RiverctlCommand( map_mode: Map, mode: ["normal"], key: "F1", mods: "Super", command: "spawn", command_args: "neorg dmenu",), RiverctlCommand( map_mode: Map, mode: ["normal"], key: "F2", mods: "Super", command: "spawn", command_args: "keepassxc",), RiverctlCommand( map_mode: Map, mode: ["normal"], key: "F3", mods: "Super", command: "spawn", command_args: "signal-desktop",), RiverctlCommand( map_mode: Map, mode: ["normal"], key: "F4", mods: "Super", command: "spawn", command_args: "steam",), @@ -55,3 +55,4 @@ RiverctlCommandArray( ], ) +// vim: nolinebreak nowrap textwidth=0 diff --git a/hm/soispha/wms/river/res/moonlander.ron b/hm/soispha/wms/river/res/moonlander.ron index 7210e64f..59db5bf5 100644 --- a/hm/soispha/wms/river/res/moonlander.ron +++ b/hm/soispha/wms/river/res/moonlander.ron @@ -28,10 +28,10 @@ RiverctlCommandArray( RiverctlCommand( map_mode: Map, mode: ["normal", "locked"], key: "N", mods: "Alt+Control+Super+Shift", command: "spawn", command_args: "mpc toggle",), // Launcher - RiverctlCommand( map_mode: Map, mode: ["normal"], key: "O", mods: "Alt+Control+Super+Shift", command: "spawn", command_args: "bemenu-run",), - RiverctlCommand( map_mode: Map, mode: ["normal"], key: "P", mods: "Alt+Control+Super+Shift", command: "spawn", command_args: "firefox",), + RiverctlCommand( map_mode: Map, mode: ["normal"], key: "O", mods: "Alt+Control+Super+Shift", command: "spawn", command_args: "rofi -show combi -modes combi -combi-modes 'window,drun,run' -show-icons",), + RiverctlCommand( map_mode: Map, mode: ["normal"], key: "P", mods: "Alt+Control+Super+Shift", command: "spawn", command_args: "neorg dmenu",), RiverctlCommand( map_mode: Map, mode: ["normal"], key: "Q", mods: "Alt+Control+Super+Shift", command: "spawn", command_args: "keepassxc",), - RiverctlCommand( map_mode: Map, mode: ["normal"], key: "R", mods: "Alt+Control+Super+Shift", command: "spawn", command_args: "nheko",), + // RiverctlCommand( map_mode: Map, mode: ["normal"], key: "R", mods: "Alt+Control+Super+Shift", command: "spawn", command_args: "nheko",), RiverctlCommand( map_mode: Map, mode: ["normal"], key: "S", mods: "Alt+Control+Super+Shift", command: "spawn", command_args: "signal-desktop",), RiverctlCommand( map_mode: Map, mode: ["normal"], key: "T", mods: "Alt+Control+Super+Shift", command: "spawn", command_args: "swaylock -f",), @@ -61,4 +61,4 @@ RiverctlCommandArray( // TODO: RiverctlTagCommand( map_mode: Map, mode: ["normal"], mods: "Super+Shift+Control", command: "toggle-view-tags",), ], ) - +// vim: nolinebreak nowrap textwidth=0 |