diff options
author | Vincent Ambo <mail@tazj.in> | 2020-07-16T16·42+0100 |
---|---|---|
committer | tazjin <mail@tazj.in> | 2020-07-16T17·57+0000 |
commit | 1ba5aa293bac0cd07421d5d1ba92c7fd8e2a5754 (patch) | |
tree | 2a0a816ec4c2a7086066f1b8d3539d85cfebc122 | |
parent | 4c340cbeb82d5f75313a9408cd770c37b7cab5c5 (diff) |
feat(tazjin/emacs): Rotate left screen counterclockwise r/1319
Change-Id: I0318e394b32c341a04471f687ee4c6d5beb29cd1 Reviewed-on: https://cl.tvl.fyi/c/depot/+/1214 Tested-by: BuildkiteCI Reviewed-by: tazjin <mail@tazj.in>
-rw-r--r-- | users/tazjin/emacs/config/desktop.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/users/tazjin/emacs/config/desktop.el b/users/tazjin/emacs/config/desktop.el index 8cb0f18b7462..1ec1769de933 100644 --- a/users/tazjin/emacs/config/desktop.el +++ b/users/tazjin/emacs/config/desktop.el @@ -197,7 +197,7 @@ ("DP2" 6 7 8 9))) (shell-command "xrandr --output HDMI1 --right-of eDP1 --auto --primary") - (shell-command "xrandr --output DP2 --right-of HDMI1 --auto") + (shell-command "xrandr --output DP2 --right-of HDMI1 --auto --rotate left") (exwm-randr-refresh)) (defun randr-vauxhall-layout-wide-only () @@ -227,7 +227,7 @@ ("DisplayPort-0" 6 7 8 9 0))) (shell-command "xrandr --output DisplayPort-1 --auto --primary --left-of DisplayPort-0") - (shell-command "xrandr --output DisplayPort-0 --auto --right-of DisplayPort-1")) + (shell-command "xrandr --output DisplayPort-0 --auto --right-of DisplayPort-1 --rotate left")) (pcase (s-trim (shell-command-to-string "hostname")) ("vauxhall" |