bazzite/system_files/deck/shared/etc/X11/Xsession.d/50rotate-screen
2024-08-07 10:02:32 -07:00

10 lines
253 B
Bash

#!/usr/bin/bash
set -e
SYS_ID="$(/usr/libexec/hwsupport/sysid)"
if [[ ":Jupiter:" =~ ":$SYS_ID:" || ":Galileo:" =~ ":$SYS_ID:" ]]; then
# Rotate the builtin screen every time so it's the right way around.
xrandr --output "eDP" --rotate "right"
fi