diff options
author | Vincent Ambo <mail@tazj.in> | 2021-11-13T16·43+0100 |
---|---|---|
committer | tazjin <mail@tazj.in> | 2021-11-13T16·46+0000 |
commit | b28c94c101ac4648c6c688b94b08c99cd870176c (patch) | |
tree | e9180962a02874f261ceb1260a4a2a388b430665 /users/tazjin | |
parent | 608e6e778eaf0aa012661063be2f6017da5fd7ac (diff) |
fix(tazjin/emacs): Adjust tverskoy screen layout for TVL office r/3064
Change-Id: I4d1ad19ee5af52b7f01e1e2003a5c95b5a133865 Reviewed-on: https://cl.tvl.fyi/c/depot/+/3871 Tested-by: BuildkiteCI Reviewed-by: tazjin <mail@tazj.in>
Diffstat (limited to 'users/tazjin')
-rw-r--r-- | users/tazjin/emacs/config/desktop.el | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/users/tazjin/emacs/config/desktop.el b/users/tazjin/emacs/config/desktop.el index 3e601e01a18a..3a4983f629f0 100644 --- a/users/tazjin/emacs/config/desktop.el +++ b/users/tazjin/emacs/config/desktop.el @@ -210,13 +210,13 @@ (exwm-randr-refresh)) (defun randr-tverskoy-split-workspace () - "Split the workspace across two screens, assuming external to the right." + "Split the workspace across two screens, assuming external to the left." (interactive) (set-randr-config - '(("eDP" 1 2 3 4 5 ) - ("HDMI-A-0" 6 7 8 9 0))) + '(("HDMI-A-0" 1 2 3 4 5 6 7) + ("eDP" 8 9 0))) - (shell-command "xrandr --output HDMI-A-0 --right-of eDP --auto") + (shell-command "xrandr --output HDMI-A-0 --left-of eDP --auto") (exwm-randr-refresh)) ;; Layouts for frog (desktop) |