Set monitor orientation on a per host basis

This commit is contained in:
SebastianStork 2024-07-18 00:29:41 +02:00
parent 265ea35fb2
commit bb47ab177d
2 changed files with 8 additions and 7 deletions

View file

@ -35,8 +35,6 @@
"cliphist wipe && wl-paste --watch cliphist store" "cliphist wipe && wl-paste --watch cliphist store"
]; ];
workspace = [ "m[HDMI-A-1],layoutopt:orientation:top" ];
input = { input = {
kb_layout = "de"; kb_layout = "de";
kb_variant = "nodeadkeys"; kb_variant = "nodeadkeys";

View file

@ -17,10 +17,13 @@
pkgs.gimp pkgs.gimp
]; ];
wayland.windowManager.hyprland.settings.monitor = [ wayland.windowManager.hyprland.settings = {
"Unknown-1,disable" monitor = [
"DP-1,2560x1440@144,0x0,1" "Unknown-1,disable"
"HDMI-A-1,2560x1440@60,-1440x-617,1,transform,1" "DP-1,2560x1440@144,0x0,1"
]; "HDMI-A-1,2560x1440@60,-1440x-617,1,transform,1"
];
workspace = [ "m[HDMI-A-1],layoutopt:orientation:top" ];
};
}; };
} }