mirror of
https://github.com/ublue-os/bazzite.git
synced 2025-04-15 23:43:02 +00:00
9 lines
271 B
Bash
Executable File
9 lines
271 B
Bash
Executable File
#!/usr/bin/bash
|
|
# Returns true for hardware that needs a rotation fix in KDE
|
|
SYS_ID="$(cat /sys/devices/virtual/dmi/id/product_name)"
|
|
if [[ ":ROG Ally RC71L_RC71L:ROG Ally RC71L:83E1:Loki Max:G1618-04:G1619-04:21A0007TUK:" =~ ":$SYS_ID:" ]]; then
|
|
exit 0
|
|
else
|
|
exit 1
|
|
fi
|