Make setup ISO-only
Remove legacy online installer entrypoints, collapse migrations for 4.0, and move setup responsibilities into target-side system, hardware, and user commands.
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
# Touchpad quirks for ASUS ExpertBook B9406 (Pixart 093A:4F05 on i2c-hid).
|
||||
#
|
||||
# The kernel produces perfect Precision Touchpad reports but libinput's
|
||||
# jump-detection heuristic discards every motion event as "kernel bug:
|
||||
# Touch jump detected and discarded" because the pad reports pressure
|
||||
# values of 0-1, confusing the contact stability check. Button events
|
||||
# still pass, so clicks register but motion does not.
|
||||
#
|
||||
# Mask the pressure axes with a quirks override, same pattern as the
|
||||
# Asus UX302LA entry in libinput's shipped 50-system-asus.quirks.
|
||||
|
||||
if omarchy-hw-asus-expertbook-b9406; then
|
||||
mkdir -p /etc/libinput
|
||||
cat > /etc/libinput/asus-expertbook-b9406.quirks <<'EOF'
|
||||
[ASUS ExpertBook B9406 Touchpad]
|
||||
MatchBus=i2c
|
||||
MatchUdevType=touchpad
|
||||
MatchVendor=0x093A
|
||||
MatchProduct=0x4F05
|
||||
MatchDMIModalias=dmi:*svnASUS*:pn*B9406*
|
||||
AttrEventCode=-ABS_MT_PRESSURE;-ABS_PRESSURE;
|
||||
EOF
|
||||
fi
|
||||
Reference in New Issue
Block a user