diff options
-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) |