···11+// This config is in the KDL format: https://kdl.dev
22+// "/-" comments out the following node.
33+// Check the wiki for a full description of the configuration:
44+// https://yalter.github.io/niri/Configuration:-Introduction
55+66+// Input device configuration.
77+// Find the full list of options on the wiki:
88+// https://yalter.github.io/niri/Configuration:-Input
99+input {
1010+ keyboard {
1111+ xkb {
1212+ // You can set rules, model, layout, variant and options.
1313+ // For more information, see xkeyboard-config(7).
1414+1515+ // For example:
1616+ // layout "us,ru"
1717+ // options "grp:win_space_toggle,compose:ralt,ctrl:nocaps"
1818+1919+ // If this section is empty, niri will fetch xkb settings
2020+ // from org.freedesktop.locale1. You can control these using
2121+ // localectl set-x11-keymap.
2222+ }
2323+2424+ // Enable numlock on startup, omitting this setting disables it.
2525+ numlock
2626+ }
2727+2828+ // Next sections include libinput settings.
2929+ // Omitting settings disables them, or leaves them at their default values.
3030+ // All commented-out settings here are examples, not defaults.
3131+ touchpad {
3232+ // off
3333+ tap
3434+ // dwt
3535+ // dwtp
3636+ // drag false
3737+ // drag-lock
3838+ natural-scroll
3939+ // accel-speed 0.2
4040+ // accel-profile "flat"
4141+ // scroll-method "two-finger"
4242+ // disabled-on-external-mouse
4343+ }
4444+4545+ mouse {
4646+ // off
4747+ // natural-scroll
4848+ // accel-speed 0.2
4949+ // accel-profile "flat"
5050+ // scroll-method "no-scroll"
5151+ }
5252+5353+ trackpoint {
5454+ // off
5555+ // natural-scroll
5656+ // accel-speed 0.2
5757+ // accel-profile "flat"
5858+ // scroll-method "on-button-down"
5959+ // scroll-button 273
6060+ // scroll-button-lock
6161+ // middle-emulation
6262+ }
6363+6464+ // Uncomment this to make the mouse warp to the center of newly focused windows.
6565+ // warp-mouse-to-focus
6666+6767+ // Focus windows and outputs automatically when moving the mouse into them.
6868+ // Setting max-scroll-amount="0%" makes it work only on windows already fully on screen.
6969+ // focus-follows-mouse max-scroll-amount="0%"
7070+}
7171+7272+// You can configure outputs by their name, which you can find
7373+// by running `niri msg outputs` while inside a niri instance.
7474+// The built-in laptop monitor is usually called "eDP-1".
7575+// Find more information on the wiki:
7676+// https://yalter.github.io/niri/Configuration:-Outputs
7777+// Remember to uncomment the node by removing "/-"!
7878+/-output "eDP-1" {
7979+ // Uncomment this line to disable this output.
8080+ // off
8181+8282+ // Resolution and, optionally, refresh rate of the output.
8383+ // The format is "<width>x<height>" or "<width>x<height>@<refresh rate>".
8484+ // If the refresh rate is omitted, niri will pick the highest refresh rate
8585+ // for the resolution.
8686+ // If the mode is omitted altogether or is invalid, niri will pick one automatically.
8787+ // Run `niri msg outputs` while inside a niri instance to list all outputs and their modes.
8888+ mode "1920x1080@120.030"
8989+9090+ // You can use integer or fractional scale, for example use 1.5 for 150% scale.
9191+ scale 2
9292+9393+ // Transform allows to rotate the output counter-clockwise, valid values are:
9494+ // normal, 90, 180, 270, flipped, flipped-90, flipped-180 and flipped-270.
9595+ transform "normal"
9696+9797+ // Position of the output in the global coordinate space.
9898+ // This affects directional monitor actions like "focus-monitor-left", and cursor movement.
9999+ // The cursor can only move between directly adjacent outputs.
100100+ // Output scale and rotation has to be taken into account for positioning:
101101+ // outputs are sized in logical, or scaled, pixels.
102102+ // For example, a 3840×2160 output with scale 2.0 will have a logical size of 1920×1080,
103103+ // so to put another output directly adjacent to it on the right, set its x to 1920.
104104+ // If the position is unset or results in an overlap, the output is instead placed
105105+ // automatically.
106106+ position x=1280 y=0
107107+}
108108+109109+// Settings that influence how windows are positioned and sized.
110110+// Find more information on the wiki:
111111+// https://yalter.github.io/niri/Configuration:-Layout
112112+layout {
113113+ // Set gaps around windows in logical pixels.
114114+ gaps 16
115115+116116+ // When to center a column when changing focus, options are:
117117+ // - "never", default behavior, focusing an off-screen column will keep at the left
118118+ // or right edge of the screen.
119119+ // - "always", the focused column will always be centered.
120120+ // - "on-overflow", focusing a column will center it if it doesn't fit
121121+ // together with the previously focused column.
122122+ center-focused-column "never"
123123+124124+ // You can customize the widths that "switch-preset-column-width" (Mod+R) toggles between.
125125+ preset-column-widths {
126126+ // Proportion sets the width as a fraction of the output width, taking gaps into account.
127127+ // For example, you can perfectly fit four windows sized "proportion 0.25" on an output.
128128+ // The default preset widths are 1/3, 1/2 and 2/3 of the output.
129129+ proportion 0.33333
130130+ proportion 0.5
131131+ proportion 0.66667
132132+133133+ // Fixed sets the width in logical pixels exactly.
134134+ // fixed 1920
135135+ }
136136+137137+ // You can also customize the heights that "switch-preset-window-height" (Mod+Shift+R) toggles between.
138138+ // preset-window-heights { }
139139+140140+ // You can change the default width of the new windows.
141141+ default-column-width { proportion 0.5; }
142142+ // If you leave the brackets empty, the windows themselves will decide their initial width.
143143+ // default-column-width {}
144144+145145+ // By default focus ring and border are rendered as a solid background rectangle
146146+ // behind windows. That is, they will show up through semitransparent windows.
147147+ // This is because windows using client-side decorations can have an arbitrary shape.
148148+ //
149149+ // If you don't like that, you should uncomment `prefer-no-csd` below.
150150+ // Niri will draw focus ring and border *around* windows that agree to omit their
151151+ // client-side decorations.
152152+ //
153153+ // Alternatively, you can override it with a window rule called
154154+ // `draw-border-with-background`.
155155+156156+ // You can change how the focus ring looks.
157157+ focus-ring {
158158+ // Uncomment this line to disable the focus ring.
159159+ // off
160160+161161+ // How many logical pixels the ring extends out from the windows.
162162+ width 4
163163+164164+ // Colors can be set in a variety of ways:
165165+ // - CSS named colors: "red"
166166+ // - RGB hex: "#rgb", "#rgba", "#rrggbb", "#rrggbbaa"
167167+ // - CSS-like notation: "rgb(255, 127, 0)", rgba(), hsl() and a few others.
168168+169169+ // Color of the ring on the active monitor.
170170+ active-color "#7fc8ff"
171171+172172+ // Color of the ring on inactive monitors.
173173+ //
174174+ // The focus ring only draws around the active window, so the only place
175175+ // where you can see its inactive-color is on other monitors.
176176+ inactive-color "#505050"
177177+178178+ // You can also use gradients. They take precedence over solid colors.
179179+ // Gradients are rendered the same as CSS linear-gradient(angle, from, to).
180180+ // The angle is the same as in linear-gradient, and is optional,
181181+ // defaulting to 180 (top-to-bottom gradient).
182182+ // You can use any CSS linear-gradient tool on the web to set these up.
183183+ // Changing the color space is also supported, check the wiki for more info.
184184+ //
185185+ // active-gradient from="#80c8ff" to="#c7ff7f" angle=45
186186+187187+ // You can also color the gradient relative to the entire view
188188+ // of the workspace, rather than relative to just the window itself.
189189+ // To do that, set relative-to="workspace-view".
190190+ //
191191+ // inactive-gradient from="#505050" to="#808080" angle=45 relative-to="workspace-view"
192192+ }
193193+194194+ // You can also add a border. It's similar to the focus ring, but always visible.
195195+ border {
196196+ // The settings are the same as for the focus ring.
197197+ // If you enable the border, you probably want to disable the focus ring.
198198+ off
199199+200200+ width 4
201201+ active-color "#ffc87f"
202202+ inactive-color "#505050"
203203+204204+ // Color of the border around windows that request your attention.
205205+ urgent-color "#9b0000"
206206+207207+ // Gradients can use a few different interpolation color spaces.
208208+ // For example, this is a pastel rainbow gradient via in="oklch longer hue".
209209+ //
210210+ // active-gradient from="#e5989b" to="#ffb4a2" angle=45 relative-to="workspace-view" in="oklch longer hue"
211211+212212+ // inactive-gradient from="#505050" to="#808080" angle=45 relative-to="workspace-view"
213213+ }
214214+215215+ // You can enable drop shadows for windows.
216216+ shadow {
217217+ // Uncomment the next line to enable shadows.
218218+ // on
219219+220220+ // By default, the shadow draws only around its window, and not behind it.
221221+ // Uncomment this setting to make the shadow draw behind its window.
222222+ //
223223+ // Note that niri has no way of knowing about the CSD window corner
224224+ // radius. It has to assume that windows have square corners, leading to
225225+ // shadow artifacts inside the CSD rounded corners. This setting fixes
226226+ // those artifacts.
227227+ //
228228+ // However, instead you may want to set prefer-no-csd and/or
229229+ // geometry-corner-radius. Then, niri will know the corner radius and
230230+ // draw the shadow correctly, without having to draw it behind the
231231+ // window. These will also remove client-side shadows if the window
232232+ // draws any.
233233+ //
234234+ // draw-behind-window true
235235+236236+ // You can change how shadows look. The values below are in logical
237237+ // pixels and match the CSS box-shadow properties.
238238+239239+ // Softness controls the shadow blur radius.
240240+ softness 30
241241+242242+ // Spread expands the shadow.
243243+ spread 5
244244+245245+ // Offset moves the shadow relative to the window.
246246+ offset x=0 y=5
247247+248248+ // You can also change the shadow color and opacity.
249249+ color "#0007"
250250+ }
251251+252252+ // Struts shrink the area occupied by windows, similarly to layer-shell panels.
253253+ // You can think of them as a kind of outer gaps. They are set in logical pixels.
254254+ // Left and right struts will cause the next window to the side to always be visible.
255255+ // Top and bottom struts will simply add outer gaps in addition to the area occupied by
256256+ // layer-shell panels and regular gaps.
257257+ struts {
258258+ // left 64
259259+ // right 64
260260+ // top 64
261261+ // bottom 64
262262+ }
263263+}
264264+265265+// Add lines like this to spawn processes at startup.
266266+// Note that running niri as a session supports xdg-desktop-autostart,
267267+// which may be more convenient to use.
268268+// See the binds section below for more spawn examples.
269269+270270+// This line starts waybar, a commonly used bar for Wayland compositors.
271271+spawn-at-startup "waybar"
272272+273273+// To run a shell command (with variables, pipes, etc.), use spawn-sh-at-startup:
274274+// spawn-sh-at-startup "qs -c ~/source/qs/MyAwesomeShell"
275275+276276+hotkey-overlay {
277277+ // Uncomment this line to disable the "Important Hotkeys" pop-up at startup.
278278+ // skip-at-startup
279279+}
280280+281281+// Uncomment this line to ask the clients to omit their client-side decorations if possible.
282282+// If the client will specifically ask for CSD, the request will be honored.
283283+// Additionally, clients will be informed that they are tiled, removing some client-side rounded corners.
284284+// This option will also fix border/focus ring drawing behind some semitransparent windows.
285285+// After enabling or disabling this, you need to restart the apps for this to take effect.
286286+// prefer-no-csd
287287+288288+// You can change the path where screenshots are saved.
289289+// A ~ at the front will be expanded to the home directory.
290290+// The path is formatted with strftime(3) to give you the screenshot date and time.
291291+screenshot-path "~/Pictures/Screenshots/Screenshot from %Y-%m-%d %H-%M-%S.png"
292292+293293+// You can also set this to null to disable saving screenshots to disk.
294294+// screenshot-path null
295295+296296+// Animation settings.
297297+// The wiki explains how to configure individual animations:
298298+// https://yalter.github.io/niri/Configuration:-Animations
299299+animations {
300300+ // Uncomment to turn off all animations.
301301+ // off
302302+303303+ // Slow down all animations by this factor. Values below 1 speed them up instead.
304304+ // slowdown 3.0
305305+}
306306+307307+// Window rules let you adjust behavior for individual windows.
308308+// Find more information on the wiki:
309309+// https://yalter.github.io/niri/Configuration:-Window-Rules
310310+311311+// Work around WezTerm's initial configure bug
312312+// by setting an empty default-column-width.
313313+window-rule {
314314+ // This regular expression is intentionally made as specific as possible,
315315+ // since this is the default config, and we want no false positives.
316316+ // You can get away with just app-id="wezterm" if you want.
317317+ match app-id=r#"^org\.wezfurlong\.wezterm$"#
318318+ default-column-width {}
319319+}
320320+321321+// Open the Firefox picture-in-picture player as floating by default.
322322+window-rule {
323323+ // This app-id regular expression will work for both:
324324+ // - host Firefox (app-id is "firefox")
325325+ // - Flatpak Firefox (app-id is "org.mozilla.firefox")
326326+ match app-id=r#"firefox$"# title="^Picture-in-Picture$"
327327+ open-floating true
328328+}
329329+330330+// Example: block out two password managers from screen capture.
331331+// (This example rule is commented out with a "/-" in front.)
332332+/-window-rule {
333333+ match app-id=r#"^org\.keepassxc\.KeePassXC$"#
334334+ match app-id=r#"^org\.gnome\.World\.Secrets$"#
335335+336336+ block-out-from "screen-capture"
337337+338338+ // Use this instead if you want them visible on third-party screenshot tools.
339339+ // block-out-from "screencast"
340340+}
341341+342342+// Example: enable rounded corners for all windows.
343343+// (This example rule is commented out with a "/-" in front.)
344344+/-window-rule {
345345+ geometry-corner-radius 12
346346+ clip-to-geometry true
347347+}
348348+349349+binds {
350350+ // Keys consist of modifiers separated by + signs, followed by an XKB key name
351351+ // in the end. To find an XKB name for a particular key, you may use a program
352352+ // like wev.
353353+ //
354354+ // "Mod" is a special modifier equal to Super when running on a TTY, and to Alt
355355+ // when running as a winit window.
356356+ //
357357+ // Most actions that you can bind here can also be invoked programmatically with
358358+ // `niri msg action do-something`.
359359+360360+ // Mod-Shift-/, which is usually the same as Mod-?,
361361+ // shows a list of important hotkeys.
362362+ Mod+Shift+Slash { show-hotkey-overlay; }
363363+364364+ // Suggested binds for running programs: terminal, app launcher, screen locker.
365365+ Mod+T hotkey-overlay-title="Open a Terminal: alacritty" { spawn "alacritty"; }
366366+ Mod+D hotkey-overlay-title="Run an Application: fuzzel" { spawn "fuzzel"; }
367367+ Super+Alt+L hotkey-overlay-title="Lock the Screen: swaylock" { spawn "swaylock"; }
368368+369369+ // Use spawn-sh to run a shell command. Do this if you need pipes, multiple commands, etc.
370370+ // Note: the entire command goes as a single argument. It's passed verbatim to `sh -c`.
371371+ // For example, this is a standard bind to toggle the screen reader (orca).
372372+ Super+Alt+S allow-when-locked=true hotkey-overlay-title=null { spawn-sh "pkill orca || exec orca"; }
373373+374374+ // Example volume keys mappings for PipeWire & WirePlumber.
375375+ // The allow-when-locked=true property makes them work even when the session is locked.
376376+ // Using spawn-sh allows to pass multiple arguments together with the command.
377377+ // "-l 1.0" limits the volume to 100%.
378378+ XF86AudioRaiseVolume allow-when-locked=true { spawn-sh "wpctl set-volume @DEFAULT_AUDIO_SINK@ 0.1+ -l 1.0"; }
379379+ XF86AudioLowerVolume allow-when-locked=true { spawn-sh "wpctl set-volume @DEFAULT_AUDIO_SINK@ 0.1-"; }
380380+ XF86AudioMute allow-when-locked=true { spawn-sh "wpctl set-mute @DEFAULT_AUDIO_SINK@ toggle"; }
381381+ XF86AudioMicMute allow-when-locked=true { spawn-sh "wpctl set-mute @DEFAULT_AUDIO_SOURCE@ toggle"; }
382382+383383+ // Example media keys mapping using playerctl.
384384+ // This will work with any MPRIS-enabled media player.
385385+ XF86AudioPlay allow-when-locked=true { spawn-sh "playerctl play-pause"; }
386386+ XF86AudioStop allow-when-locked=true { spawn-sh "playerctl stop"; }
387387+ XF86AudioPrev allow-when-locked=true { spawn-sh "playerctl previous"; }
388388+ XF86AudioNext allow-when-locked=true { spawn-sh "playerctl next"; }
389389+390390+ // Example brightness key mappings for brightnessctl.
391391+ // You can use regular spawn with multiple arguments too (to avoid going through "sh"),
392392+ // but you need to manually put each argument in separate "" quotes.
393393+ XF86MonBrightnessUp allow-when-locked=true { spawn "brightnessctl" "--class=backlight" "set" "+10%"; }
394394+ XF86MonBrightnessDown allow-when-locked=true { spawn "brightnessctl" "--class=backlight" "set" "10%-"; }
395395+396396+ // Open/close the Overview: a zoomed-out view of workspaces and windows.
397397+ // You can also move the mouse into the top-left hot corner,
398398+ // or do a four-finger swipe up on a touchpad.
399399+ Mod+O repeat=false { toggle-overview; }
400400+401401+ Mod+Q repeat=false { close-window; }
402402+403403+ Mod+Left { focus-column-left; }
404404+ Mod+Down { focus-window-down; }
405405+ Mod+Up { focus-window-up; }
406406+ Mod+Right { focus-column-right; }
407407+ Mod+H { focus-column-left; }
408408+ Mod+J { focus-window-down; }
409409+ Mod+K { focus-window-up; }
410410+ Mod+L { focus-column-right; }
411411+412412+ Mod+Ctrl+Left { move-column-left; }
413413+ Mod+Ctrl+Down { move-window-down; }
414414+ Mod+Ctrl+Up { move-window-up; }
415415+ Mod+Ctrl+Right { move-column-right; }
416416+ Mod+Ctrl+H { move-column-left; }
417417+ Mod+Ctrl+J { move-window-down; }
418418+ Mod+Ctrl+K { move-window-up; }
419419+ Mod+Ctrl+L { move-column-right; }
420420+421421+ // Alternative commands that move across workspaces when reaching
422422+ // the first or last window in a column.
423423+ // Mod+J { focus-window-or-workspace-down; }
424424+ // Mod+K { focus-window-or-workspace-up; }
425425+ // Mod+Ctrl+J { move-window-down-or-to-workspace-down; }
426426+ // Mod+Ctrl+K { move-window-up-or-to-workspace-up; }
427427+428428+ Mod+Home { focus-column-first; }
429429+ Mod+End { focus-column-last; }
430430+ Mod+Ctrl+Home { move-column-to-first; }
431431+ Mod+Ctrl+End { move-column-to-last; }
432432+433433+ Mod+Shift+Left { focus-monitor-left; }
434434+ Mod+Shift+Down { focus-monitor-down; }
435435+ Mod+Shift+Up { focus-monitor-up; }
436436+ Mod+Shift+Right { focus-monitor-right; }
437437+ Mod+Shift+H { focus-monitor-left; }
438438+ Mod+Shift+J { focus-monitor-down; }
439439+ Mod+Shift+K { focus-monitor-up; }
440440+ Mod+Shift+L { focus-monitor-right; }
441441+442442+ Mod+Shift+Ctrl+Left { move-column-to-monitor-left; }
443443+ Mod+Shift+Ctrl+Down { move-column-to-monitor-down; }
444444+ Mod+Shift+Ctrl+Up { move-column-to-monitor-up; }
445445+ Mod+Shift+Ctrl+Right { move-column-to-monitor-right; }
446446+ Mod+Shift+Ctrl+H { move-column-to-monitor-left; }
447447+ Mod+Shift+Ctrl+J { move-column-to-monitor-down; }
448448+ Mod+Shift+Ctrl+K { move-column-to-monitor-up; }
449449+ Mod+Shift+Ctrl+L { move-column-to-monitor-right; }
450450+451451+ // Alternatively, there are commands to move just a single window:
452452+ // Mod+Shift+Ctrl+Left { move-window-to-monitor-left; }
453453+ // ...
454454+455455+ // And you can also move a whole workspace to another monitor:
456456+ // Mod+Shift+Ctrl+Left { move-workspace-to-monitor-left; }
457457+ // ...
458458+459459+ Mod+Page_Down { focus-workspace-down; }
460460+ Mod+Page_Up { focus-workspace-up; }
461461+ Mod+U { focus-workspace-down; }
462462+ Mod+I { focus-workspace-up; }
463463+ Mod+Ctrl+Page_Down { move-column-to-workspace-down; }
464464+ Mod+Ctrl+Page_Up { move-column-to-workspace-up; }
465465+ Mod+Ctrl+U { move-column-to-workspace-down; }
466466+ Mod+Ctrl+I { move-column-to-workspace-up; }
467467+468468+ // Alternatively, there are commands to move just a single window:
469469+ // Mod+Ctrl+Page_Down { move-window-to-workspace-down; }
470470+ // ...
471471+472472+ Mod+Shift+Page_Down { move-workspace-down; }
473473+ Mod+Shift+Page_Up { move-workspace-up; }
474474+ Mod+Shift+U { move-workspace-down; }
475475+ Mod+Shift+I { move-workspace-up; }
476476+477477+ // You can bind mouse wheel scroll ticks using the following syntax.
478478+ // These binds will change direction based on the natural-scroll setting.
479479+ //
480480+ // To avoid scrolling through workspaces really fast, you can use
481481+ // the cooldown-ms property. The bind will be rate-limited to this value.
482482+ // You can set a cooldown on any bind, but it's most useful for the wheel.
483483+ Mod+WheelScrollDown cooldown-ms=150 { focus-workspace-down; }
484484+ Mod+WheelScrollUp cooldown-ms=150 { focus-workspace-up; }
485485+ Mod+Ctrl+WheelScrollDown cooldown-ms=150 { move-column-to-workspace-down; }
486486+ Mod+Ctrl+WheelScrollUp cooldown-ms=150 { move-column-to-workspace-up; }
487487+488488+ Mod+WheelScrollRight { focus-column-right; }
489489+ Mod+WheelScrollLeft { focus-column-left; }
490490+ Mod+Ctrl+WheelScrollRight { move-column-right; }
491491+ Mod+Ctrl+WheelScrollLeft { move-column-left; }
492492+493493+ // Usually scrolling up and down with Shift in applications results in
494494+ // horizontal scrolling; these binds replicate that.
495495+ Mod+Shift+WheelScrollDown { focus-column-right; }
496496+ Mod+Shift+WheelScrollUp { focus-column-left; }
497497+ Mod+Ctrl+Shift+WheelScrollDown { move-column-right; }
498498+ Mod+Ctrl+Shift+WheelScrollUp { move-column-left; }
499499+500500+ // Similarly, you can bind touchpad scroll "ticks".
501501+ // Touchpad scrolling is continuous, so for these binds it is split into
502502+ // discrete intervals.
503503+ // These binds are also affected by touchpad's natural-scroll, so these
504504+ // example binds are "inverted", since we have natural-scroll enabled for
505505+ // touchpads by default.
506506+ // Mod+TouchpadScrollDown { spawn-sh "wpctl set-volume @DEFAULT_AUDIO_SINK@ 0.02+"; }
507507+ // Mod+TouchpadScrollUp { spawn-sh "wpctl set-volume @DEFAULT_AUDIO_SINK@ 0.02-"; }
508508+509509+ // You can refer to workspaces by index. However, keep in mind that
510510+ // niri is a dynamic workspace system, so these commands are kind of
511511+ // "best effort". Trying to refer to a workspace index bigger than
512512+ // the current workspace count will instead refer to the bottommost
513513+ // (empty) workspace.
514514+ //
515515+ // For example, with 2 workspaces + 1 empty, indices 3, 4, 5 and so on
516516+ // will all refer to the 3rd workspace.
517517+ Mod+1 { focus-workspace 1; }
518518+ Mod+2 { focus-workspace 2; }
519519+ Mod+3 { focus-workspace 3; }
520520+ Mod+4 { focus-workspace 4; }
521521+ Mod+5 { focus-workspace 5; }
522522+ Mod+6 { focus-workspace 6; }
523523+ Mod+7 { focus-workspace 7; }
524524+ Mod+8 { focus-workspace 8; }
525525+ Mod+9 { focus-workspace 9; }
526526+ Mod+Ctrl+1 { move-column-to-workspace 1; }
527527+ Mod+Ctrl+2 { move-column-to-workspace 2; }
528528+ Mod+Ctrl+3 { move-column-to-workspace 3; }
529529+ Mod+Ctrl+4 { move-column-to-workspace 4; }
530530+ Mod+Ctrl+5 { move-column-to-workspace 5; }
531531+ Mod+Ctrl+6 { move-column-to-workspace 6; }
532532+ Mod+Ctrl+7 { move-column-to-workspace 7; }
533533+ Mod+Ctrl+8 { move-column-to-workspace 8; }
534534+ Mod+Ctrl+9 { move-column-to-workspace 9; }
535535+536536+ // Alternatively, there are commands to move just a single window:
537537+ // Mod+Ctrl+1 { move-window-to-workspace 1; }
538538+539539+ // Switches focus between the current and the previous workspace.
540540+ // Mod+Tab { focus-workspace-previous; }
541541+542542+ // The following binds move the focused window in and out of a column.
543543+ // If the window is alone, they will consume it into the nearby column to the side.
544544+ // If the window is already in a column, they will expel it out.
545545+ Mod+BracketLeft { consume-or-expel-window-left; }
546546+ Mod+BracketRight { consume-or-expel-window-right; }
547547+548548+ // Consume one window from the right to the bottom of the focused column.
549549+ Mod+Comma { consume-window-into-column; }
550550+ // Expel the bottom window from the focused column to the right.
551551+ Mod+Period { expel-window-from-column; }
552552+553553+ Mod+R { switch-preset-column-width; }
554554+ // Cycling through the presets in reverse order is also possible.
555555+ // Mod+R { switch-preset-column-width-back; }
556556+ Mod+Shift+R { switch-preset-window-height; }
557557+ Mod+Ctrl+R { reset-window-height; }
558558+ Mod+F { maximize-column; }
559559+ Mod+Shift+F { fullscreen-window; }
560560+561561+ // Expand the focused column to space not taken up by other fully visible columns.
562562+ // Makes the column "fill the rest of the space".
563563+ Mod+Ctrl+F { expand-column-to-available-width; }
564564+565565+ Mod+C { center-column; }
566566+567567+ // Center all fully visible columns on screen.
568568+ Mod+Ctrl+C { center-visible-columns; }
569569+570570+ // Finer width adjustments.
571571+ // This command can also:
572572+ // * set width in pixels: "1000"
573573+ // * adjust width in pixels: "-5" or "+5"
574574+ // * set width as a percentage of screen width: "25%"
575575+ // * adjust width as a percentage of screen width: "-10%" or "+10%"
576576+ // Pixel sizes use logical, or scaled, pixels. I.e. on an output with scale 2.0,
577577+ // set-column-width "100" will make the column occupy 200 physical screen pixels.
578578+ Mod+Minus { set-column-width "-10%"; }
579579+ Mod+Equal { set-column-width "+10%"; }
580580+581581+ // Finer height adjustments when in column with other windows.
582582+ Mod+Shift+Minus { set-window-height "-10%"; }
583583+ Mod+Shift+Equal { set-window-height "+10%"; }
584584+585585+ // Move the focused window between the floating and the tiling layout.
586586+ Mod+V { toggle-window-floating; }
587587+ Mod+Shift+V { switch-focus-between-floating-and-tiling; }
588588+589589+ // Toggle tabbed column display mode.
590590+ // Windows in this column will appear as vertical tabs,
591591+ // rather than stacked on top of each other.
592592+ Mod+W { toggle-column-tabbed-display; }
593593+594594+ // Actions to switch layouts.
595595+ // Note: if you uncomment these, make sure you do NOT have
596596+ // a matching layout switch hotkey configured in xkb options above.
597597+ // Having both at once on the same hotkey will break the switching,
598598+ // since it will switch twice upon pressing the hotkey (once by xkb, once by niri).
599599+ // Mod+Space { switch-layout "next"; }
600600+ // Mod+Shift+Space { switch-layout "prev"; }
601601+602602+ Print { screenshot; }
603603+ Ctrl+Print { screenshot-screen; }
604604+ Alt+Print { screenshot-window; }
605605+606606+ // Applications such as remote-desktop clients and software KVM switches may
607607+ // request that niri stops processing the keyboard shortcuts defined here
608608+ // so they may, for example, forward the key presses as-is to a remote machine.
609609+ // It's a good idea to bind an escape hatch to toggle the inhibitor,
610610+ // so a buggy application can't hold your session hostage.
611611+ //
612612+ // The allow-inhibiting=false property can be applied to other binds as well,
613613+ // which ensures niri always processes them, even when an inhibitor is active.
614614+ Mod+Escape allow-inhibiting=false { toggle-keyboard-shortcuts-inhibit; }
615615+616616+ // The quit action will show a confirmation dialog to avoid accidental exits.
617617+ Mod+Shift+E { quit; }
618618+ Ctrl+Alt+Delete { quit; }
619619+620620+ // Powers off the monitors. To turn them back on, do any input like
621621+ // moving the mouse or pressing any other key.
622622+ Mod+Shift+P { power-off-monitors; }
623623+}