Skip to content

Commit

Permalink
fix: AOKZOE A1 Pro (AMD R愛zen 7840U) - Add device to simpledeckytdp-s…
Browse files Browse the repository at this point in the history
…upported-hardware and hhd-supported-hardware, as well as add waydroid-launcher resolution (#1126)

* fix(waydroid): Add AOKZOE A1 Pro waydroid-launcher resolution

Adding AOKZOE A1 Pro (AMD 7840U) as it shares the same resolution as it's 6800U counterpart.

* fix(hhd): Add AOKZOE A1 Pro to supported hardware

Adding AOKZOE A1 Pro (AMD 7840U) as hhd already supports it.

* fix(simpledeckytdp): Add AOKZOE A1 Pro (powered by AMD R愛zen 7840U)

Adding AOKZOE A1 Pro as it already supports RyzenAdj (and by extension SimpleDeckyTDP itself).

『愛してるよ! 愛だけに!』

---------

Co-authored-by: Asir N <78288795+asir928@users.noreply.github.com>
Co-authored-by: Asir N <78288795+WhippuGBP@users.noreply.github.com>
  • Loading branch information
3 people authored May 14, 2024
1 parent 8696689 commit fda8b60
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ case "$(cat /sys/devices/virtual/dmi/id/product_name)" in
"ROG Ally RC71L_RC71L" | "G1618-04" | "G1617-01" | "Loki Max")
WAYDROID_WIDTH=1920
WAYDROID_HEIGHT=1080 ;;
"AYANEO 2" | "AYANEO 2S" | "AOKZOE A1 AR07" | "G1619-04" | "AIR Plus")
"AYANEO 2" | "AYANEO 2S" | "AOKZOE A1 AR07" | "AOKZOE A1 Pro" | "G1619-04" | "AIR Plus")
WAYDROID_WIDTH=1920
WAYDROID_HEIGHT=1200 ;;
"83E1")
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/bash
# Returns true for hardware that is supported by HHD
SYS_ID="$(cat /sys/devices/virtual/dmi/id/product_name)"
if [[ ":ROG Ally RC71L_RC71L:ROG Ally RC71L:83E1:G1618-04:G1617-01:G1619-05:AIR Plus:AIR:AYANEO GEEK:AYANEO 2:AYANEO 2S:AOKZOE A1 AR07:G1619-04:Win600:Loki Max:Loki Zero:Loki MiniPro:" =~ ":$SYS_ID:" ]]; then
if [[ ":ROG Ally RC71L_RC71L:ROG Ally RC71L:83E1:G1618-04:G1617-01:G1619-05:AIR Plus:AIR:AYANEO GEEK:AYANEO 2:AYANEO 2S:AOKZOE A1 AR07:AOKZOE A1 Pro:G1619-04:Win600:Loki Max:Loki Zero:Loki MiniPro:" =~ ":$SYS_ID:" ]]; then
exit 0
fi

Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/bash
# Returns true for hardware that is supported by SimpleDeckyTDP
SYS_ID="$(cat /sys/devices/virtual/dmi/id/product_name)"
if [[ ":ROG Ally RC71L_RC71L:ROG Ally RC71L:83E1:G1618-04:G1619-04:G1617-01:G1619-05:AIR Plus:AIR:SLIDE:V3:" =~ ":$SYS_ID:" ]]; then
if [[ ":ROG Ally RC71L_RC71L:ROG Ally RC71L:83E1:G1618-04:G1619-04:G1617-01:G1619-05:AIR Plus:AIR:SLIDE:V3:AOKZOE A1 AR07:AOKZOE A1 Pro:" =~ ":$SYS_ID:" ]]; then
exit 0
fi

Expand Down

0 comments on commit fda8b60

Please sign in to comment.