about summary refs log tree commit diff
diff options
context:
space:
mode:
authorGriffin Smith <grfn@gws.fyi>2022-01-20T14·29-0500
committergrfn <grfn@gws.fyi>2022-01-20T14·32+0000
commit5213b72257003d0285e96a31d0723c75d177a927 (patch)
tree5aed087ba547f96572eb0e866815dd907013ea14
parentf30e04da466a91be879f15bba142cb20fceb995d (diff)
refactor(grfn/home): Tweak screenlayout for new desk layout r/3649
Change-Id: Idca10ee66ed3b083fa914140fef421198462f794
Reviewed-on: https://cl.tvl.fyi/c/depot/+/5029
Reviewed-by: grfn <grfn@gws.fyi>
Autosubmit: grfn <grfn@gws.fyi>
Tested-by: BuildkiteCI
-rw-r--r--users/grfn/system/home/modules/i3.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/users/grfn/system/home/modules/i3.nix b/users/grfn/system/home/modules/i3.nix
index df0859b46a..111f2a08c2 100644
--- a/users/grfn/system/home/modules/i3.nix
+++ b/users/grfn/system/home/modules/i3.nix
@@ -10,10 +10,10 @@ let
   screenlayout = {
     home = pkgs.writeShellScript "screenlayout_home.sh" ''
       xrandr \
-        --output eDP-1 --mode 1920x1200 --pos 0x2160 --rotate normal \
+        --output eDP-1 --mode 1920x1200 --pos 0x960 --rotate normal \
+        --output DP-3 --primary --mode 3840x2160 --pos 1920x0 --rotate normal \
         --output DP-1 --off \
         --output DP-2 --off \
-        --output DP-3 --mode 3840x2160 --pos 0x0 --rotate normal \
         --output DP-4 --off
     '';
   };