mirror of
https://github.com/ublue-os/bazzite.git
synced 2025-01-04 02:40:05 +00:00
10 lines
253 B
Bash
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
|