Niri multi monitor
This commit is contained in:
parent
009b66e562
commit
d3efdfcdc1
|
|
@ -136,11 +136,16 @@ in {
|
|||
focus-follows-mouse max-scroll-amount="10%"
|
||||
warp-mouse-to-focus
|
||||
}
|
||||
output "HDMI-A-1" {
|
||||
scale 1.0
|
||||
position x=0 y=-2160
|
||||
}
|
||||
${
|
||||
if scale != null
|
||||
then ''
|
||||
output "eDP-1" {
|
||||
scale ${toString scale}
|
||||
position x=0 y=0
|
||||
}
|
||||
''
|
||||
else ""
|
||||
|
|
@ -175,15 +180,19 @@ in {
|
|||
Mod+Alt+J { set-window-height "+5%"; }
|
||||
|
||||
// Movement
|
||||
Mod+H { focus-column-left; }
|
||||
Mod+J { focus-window-down; }
|
||||
Mod+K { focus-window-up; }
|
||||
Mod+L { focus-column-right; }
|
||||
Mod+H { focus-column-or-monitor-left; }
|
||||
Mod+J { focus-window-or-monitor-down; }
|
||||
Mod+K { focus-window-or-monitor-up; }
|
||||
Mod+L { focus-column-or-monitor-right; }
|
||||
|
||||
Mod+Shift+H { move-column-left; }
|
||||
Mod+Shift+L { move-column-right; }
|
||||
Mod+Shift+J { move-window-down; }
|
||||
Mod+Shift+K { move-window-up; }
|
||||
Mod+Shift+H { move-column-left-or-to-monitor-left; }
|
||||
Mod+Shift+L { move-column-right-or-to-monitor-right; }
|
||||
Mod+Shift+J { move-window-down-or-to-workspace-down; }
|
||||
Mod+Shift+K { move-window-up-or-to-workspace-up; }
|
||||
|
||||
// Move window to the other monitor
|
||||
Mod+Ctrl+K { move-window-to-monitor-up; }
|
||||
Mod+Ctrl+J { move-window-to-monitor-down; }
|
||||
|
||||
// Workspaces
|
||||
Mod+Shift+U { move-column-to-workspace-down; }
|
||||
|
|
|
|||
Loading…
Reference in New Issue