diff options
-rw-r--r-- | users/glittershark/system/home/modules/i3.nix | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/users/glittershark/system/home/modules/i3.nix b/users/glittershark/system/home/modules/i3.nix index e5f9cb5303f2..54956e469e2e 100644 --- a/users/glittershark/system/home/modules/i3.nix +++ b/users/glittershark/system/home/modules/i3.nix @@ -10,9 +10,11 @@ let screenlayout = { home = pkgs.writeShellScript "screenlayout_home.sh" '' xrandr \ - --output eDP1 --mode 3840x2160 --pos 0x0 --rotate normal \ - --output DP1 --primary --mode 3840x2160 --pos 0x2160 --rotate normal \ - --output DP2 --off --output DP3 --off --output VIRTUAL1 --off + --output eDP-1 --mode 1920x1200 --pos 0x2160 --rotate normal \ + --output DP-1 --off \ + --output DP-2 --off \ + --output DP-3 --mode 3840x2160 --pos 0x0 --rotate normal \ + --output DP-4 --off ''; }; in { |