Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 9 additions & 3 deletions usr/share/gamescope-session-plus/device-quirks
Original file line number Diff line number Diff line change
Expand Up @@ -68,16 +68,22 @@ if [[ ":$SYS_ID:" =~ :ONEXPLAYER\ G1\ (A|i): ]]; then
export STEAM_DISPLAY_REFRESH_LIMITS=60,144
fi

# AYANEO AIR, SLIDE, and FLIP Keyboard Devices
AIR_LIST="AIR:AIR Pro:AIR Plus:SLIDE:FLIP KB:"
# AYANEO AIR and SLIDE
AIR_LIST="AIR:AIR Pro:AIR Plus:SLIDE:"
if [[ ":$AIR_LIST:" =~ ":$SYS_ID:" ]]; then
PANEL_TYPE=external
ORIENTATION=left
fi

# AYANEO FLIP Keyboard
if [[ ":FLIP KB:" =~ ":$SYS_ID:" ]]; then
PANEL_TYPE=internal
ORIENTATION=left
fi

# AYANEO FLIP Dual Screen
if [[ ":FLIP DS:" =~ ":$SYS_ID:" ]]; then
PANEL_TYPE=external
PANEL_TYPE=internal
ORIENTATION=left
OUTPUT_CONNECTOR='*,eDP-1,eDP-2' # prefer the top screen
fi
Expand Down