my nixos flake :3 (git.koi.rip mirror) git.koi.rip/koi/flake
nixos catppuccin linux dotfiles neovim
0

Configure Feed

Select the types of activity you want to include in your feed.

niri: match keybinds with mango setup

june (Jul 1, 2026, 5:59 PM +0200) 31a09751 ab5216bc

+26 -31
+26 -31
home/wayland/niri.nix
··· 158 158 hotkey-overlay.skip-at-startup = true; 159 159 160 160 binds = { 161 - "mod+k".action.spawn = [ "footclient" ]; 162 - "mod+m".action.spawn = [ "rofi" "-show" "drun" ]; 161 + "alt+c".action.close-window = [ ]; 162 + "alt+tab".action.toggle-overview = [ ]; 163 + 164 + "alt+backslash".action.show-hotkey-overlay = [ ]; 165 + "alt+bracketright".action.quit = [ ]; 166 + 167 + "alt+k".action.spawn = [ "footclient" ]; 168 + "alt+h".action.spawn = [ "rofi" "-show" "drun" ]; 169 + 170 + "alt+m".action.toggle-window-floating = [ ]; 171 + "alt+comma".action.switch-focus-between-floating-and-tiling = [ ]; 172 + 173 + "alt+l".action.expand-column-to-available-width = [ ]; 163 174 164 - "mod+comma".action.close-window = [ ]; 165 - "mod+backslash".action.show-hotkey-overlay = [ ]; 166 - "mod+q".action.quit = [ ]; 175 + "alt+u".action.switch-preset-column-width = [ ]; 176 + "alt+y".action.maximize-column = [ ]; 177 + "alt+shift+y".action.fullscreen-window = [ ]; 178 + "alt+ctrl+y".action.toggle-windowed-fullscreen = [ ]; 167 179 168 180 "alt+n".action.focus-column-left = [ ]; 169 181 "alt+e".action.focus-window-down = [ ]; 170 182 "alt+i".action.focus-window-up = [ ]; 171 183 "alt+o".action.focus-column-right = [ ]; 172 184 185 + "alt+home".action.focus-column-first = [ ]; 186 + "alt+end".action.focus-column-last = [ ]; 187 + "alt+shift+home".action.move-column-to-first = [ ]; 188 + "alt+shift+end".action.move-column-to-last = [ ]; 189 + 173 190 "alt+shift+n".action.move-column-left = [ ]; 174 191 "alt+shift+e".action.move-window-down = [ ]; 175 192 "alt+shift+i".action.move-window-up = [ ]; 176 193 "alt+shift+o".action.move-column-right = [ ]; 177 194 178 - "alt+home".action.focus-column-first = [ ]; 179 - "alt+end".action.focus-column-last = [ ]; 180 - "alt+shift+home".action.move-column-to-first = [ ]; 181 - "alt+shift+end".action.move-column-to-last = [ ]; 182 - 183 195 "alt+ctrl+n".action.consume-or-expel-window-left = [ ]; 184 196 "alt+ctrl+e".action.consume-or-expel-window-right = [ ]; 185 197 "alt+ctrl+i".action.consume-or-expel-window-left = [ ]; 186 198 "alt+ctrl+o".action.consume-or-expel-window-right = [ ]; 187 199 188 - "alt+m".action.toggle-window-floating = [ ]; 189 - "alt+comma".action.switch-focus-between-floating-and-tiling = [ ]; 190 - 191 - "alt+u".action.switch-preset-column-width = [ ]; 192 - "alt+y".action.maximize-column = [ ]; 193 - 194 - "mod+l".action.expand-column-to-available-width = [ ]; 195 - "mod+u".action.fullscreen-window = [ ]; 196 - "mod+y".action.toggle-windowed-fullscreen = [ ]; 197 - 198 - "alt+tab".action.toggle-overview = [ ]; 200 + "mod+1".action.focus-workspace = 1; 201 + "mod+2".action.focus-workspace = 2; 202 + "mod+3".action.focus-workspace = 3; 203 + "mod+4".action.focus-workspace = "social"; 199 204 200 205 "mod+n".action.focus-workspace-up = [ ]; 201 206 "mod+e".action.focus-workspace-down = [ ]; ··· 207 212 "mod+shift+i".action.move-column-to-workspace-up = [ ]; 208 213 "mod+shift+o".action.move-column-to-workspace-down = [ ]; 209 214 210 - "mod+1".action.focus-workspace = 1; 211 - "mod+2".action.focus-workspace = 2; 212 - "mod+3".action.focus-workspace = 3; 213 - "mod+4".action.focus-workspace = "social"; 214 - 215 215 "mod+shift+1".action.move-column-to-workspace = 1; 216 216 "mod+shift+2".action.move-column-to-workspace = 2; 217 217 "mod+shift+3".action.move-column-to-workspace = 3; 218 218 "mod+shift+4".action.move-column-to-workspace = "social"; 219 - 220 - "mod+ctrl+n".action.set-column-width = "-10%"; 221 - "mod+ctrl+e".action.set-window-height = "+10%"; 222 - "mod+ctrl+i".action.set-window-height = "-10%"; 223 - "mod+ctrl+o".action.set-column-width = "+10%"; 224 219 225 220 "print".action.screenshot = [ ]; 226 221 "shift+print".action.screenshot-window = [ ];