mirror of
https://github.com/arthur-pbty/arthur-os.git
synced 2026-08-01 20:28:16 +02:00
* Extract ASUS Expertbook B9406 display backlight fix and apply it for Zenbook ux5406aa too * Add migration for Panther Lake Asus display bakclight fix * Check if limine-update exists before executing it in the migration Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com> --------- Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
16 lines
509 B
Bash
16 lines
509 B
Bash
echo "Fix display backlight on supported ASUS Panther Lake laptops"
|
|
|
|
EXPERTBOOK_DROP_IN="/etc/limine-entry-tool.d/asus-expertbook-b9406-display.conf"
|
|
|
|
if omarchy-hw-asus-expertbook-b9406 || omarchy-hw-asus-zenbook-ux5406aa; then
|
|
if [[ -f $EXPERTBOOK_DROP_IN ]]; then
|
|
sudo sed -i '/xe\.enable_dpcd_backlight/d' "$EXPERTBOOK_DROP_IN"
|
|
fi
|
|
|
|
source "$OMARCHY_PATH/install/config/hardware/asus/fix-asus-ptl-display-backlight.sh"
|
|
|
|
if omarchy-cmd-present limine-update; then
|
|
sudo limine-update
|
|
fi
|
|
fi
|