Skip to content

Commit

Permalink
fix: Correct gamemode check in rotation fix
Browse files Browse the repository at this point in the history
chore: Move to kinoite folder
  • Loading branch information
KyleGospo committed Jan 19, 2024
1 parent daa1299 commit 6eb6f27
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ kscreen-doctor --outputs 2>&1 | tee -a /tmp/bazrotfix.log
# Fix desktop orientation
# Rotation options: right, normal, left, inverted
echo $(date '+%Y-%m-%d %H:%M:%S') Fixing desktop orientation... | tee -a /tmp/bazrotfix.log
if [[ -z "$IS_GAMEMODE" ]]; then
if [[ ! -z "$IS_GAMEMODE" ]]; then
kscreen-doctor output.1.rotation.normal 2>&1 | tee -a /tmp/bazrotfix.log
elif [[ ":83E1:" =~ ":$SYS_ID" ]]; then
kscreen-doctor output.1.rotation.left 2>&1 | tee -a /tmp/bazrotfix.log
Expand Down

0 comments on commit 6eb6f27

Please sign in to comment.