mirror of
https://github.com/niri-wm/niri.git
synced 2026-06-22 02:01:55 +07:00
89 lines
2.9 KiB
KDL
89 lines
2.9 KiB
KDL
// This config is in the KDL format: https://kdl.dev
|
|
// "/-" comments out the following node.
|
|
|
|
input {
|
|
keyboard {
|
|
xkb {
|
|
// You can set rules, model, layout, variant and options.
|
|
// For more information, see xkeyboard-config(7).
|
|
|
|
// For example:
|
|
/-layout "us,ru"
|
|
/-options "grp:win_space_toggle,compose:ralt,ctrl:nocaps"
|
|
}
|
|
}
|
|
|
|
// Next sections contain libinput settings.
|
|
// Omitting settings disables them, or leaves them at their default values.
|
|
touchpad {
|
|
tap
|
|
natural-scroll
|
|
/-accel-speed 0.2
|
|
}
|
|
}
|
|
|
|
binds {
|
|
// Keys consist of modifiers separated by + signs, followed by an XKB key name
|
|
// in the end. To find an XKB name for a particular key, you may use a program
|
|
// like wev.
|
|
//
|
|
// "Mod" is a special modifier equal to Super when running on a TTY, and to Alt
|
|
// when running as a winit window.
|
|
|
|
Mod+T { spawn "alacritty"; }
|
|
Mod+Q { close-window; }
|
|
|
|
Mod+H { focus-column-left; }
|
|
Mod+J { focus-window-down; }
|
|
Mod+K { focus-window-up; }
|
|
Mod+L { focus-column-right; }
|
|
Mod+Left { focus-column-left; }
|
|
Mod+Down { focus-window-down; }
|
|
Mod+Up { focus-window-up; }
|
|
Mod+Right { focus-column-right; }
|
|
|
|
Mod+Ctrl+H { move-column-left; }
|
|
Mod+Ctrl+J { move-window-down; }
|
|
Mod+Ctrl+K { move-window-up; }
|
|
Mod+Ctrl+L { move-column-right; }
|
|
Mod+Ctrl+Left { move-column-left; }
|
|
Mod+Ctrl+Down { move-window-down; }
|
|
Mod+Ctrl+Up { move-window-up; }
|
|
Mod+Ctrl+Right { move-column-right; }
|
|
|
|
Mod+Shift+H { focus-monitor-left; }
|
|
Mod+Shift+J { focus-monitor-down; }
|
|
Mod+Shift+K { focus-monitor-up; }
|
|
Mod+Shift+L { focus-monitor-right; }
|
|
Mod+Shift+Left { focus-monitor-left; }
|
|
Mod+Shift+Down { focus-monitor-down; }
|
|
Mod+Shift+Up { focus-monitor-up; }
|
|
Mod+Shift+Right { focus-monitor-right; }
|
|
|
|
Mod+Shift+Ctrl+H { move-window-to-monitor-left; }
|
|
Mod+Shift+Ctrl+J { move-window-to-monitor-down; }
|
|
Mod+Shift+Ctrl+K { move-window-to-monitor-up; }
|
|
Mod+Shift+Ctrl+L { move-window-to-monitor-right; }
|
|
Mod+Shift+Ctrl+Left { move-window-to-monitor-left; }
|
|
Mod+Shift+Ctrl+Down { move-window-to-monitor-down; }
|
|
Mod+Shift+Ctrl+Up { move-window-to-monitor-up; }
|
|
Mod+Shift+Ctrl+Right { move-window-to-monitor-right; }
|
|
|
|
Mod+U { focus-workspace-down; }
|
|
Mod+I { focus-workspace-up; }
|
|
Mod+Ctrl+U { move-window-to-workspace-down; }
|
|
Mod+Ctrl+I { move-window-to-workspace-up; }
|
|
|
|
Mod+Comma { consume-window-into-column; }
|
|
Mod+Period { expel-window-from-column; }
|
|
|
|
Mod+R { switch-preset-column-width; }
|
|
Mod+F { maximize-column; }
|
|
Mod+Shift+F { fullscreen-window; }
|
|
|
|
Print { screenshot; }
|
|
Mod+Shift+E { quit; }
|
|
|
|
Mod+Shift+Ctrl+T { toggle-debug-tint; }
|
|
}
|