2022-01-05 19:20:22 +01:00
|
|
|
# Author
|
|
|
|
|
|
|
|
Github: jnettlet
|
|
|
|
|
|
|
|
|
|
|
|
# Source Url:
|
|
|
|
|
|
|
|
99-asus-falchion.hwdb : [GITHUB](https://gist.github.com/jnettlet/afb20a048b8720f3b4eb8506d8b05643)
|
|
|
|
|
|
|
|
40-libinput.conf : [Ask Ubuntu](https://askubuntu.com/questions/1351203/how-do-i-stop-my-rog-falchion-wireless-keyboard-from-rebooting-ubuntu)
|
|
|
|
|
|
|
|
# Installation
|
|
|
|
|
2022-05-05 23:02:15 +02:00
|
|
|
## Archlinux (AUR)
|
|
|
|
|
|
|
|
AUR: https://aur.archlinux.org/packages/falchion-shutdown
|
|
|
|
GITHUB: https://github.com/mrdev023/falchion-shutdown
|
|
|
|
|
2022-01-11 19:06:03 +01:00
|
|
|
## Common
|
|
|
|
|
2022-01-11 19:15:35 +01:00
|
|
|
```bash
|
2022-01-11 19:06:03 +01:00
|
|
|
cp ./99-asus-falchion.hwdb /etc/udev/hwdb.d/99-asus-falchion.hwdb
|
|
|
|
systemd-hwdb update
|
2022-01-11 19:15:35 +01:00
|
|
|
|
|
|
|
# or
|
|
|
|
|
|
|
|
curl https://raw.githubusercontent.com/mrdev023/linux-conf/main/useful_scripts/falchion/install.sh -o - | bash
|
2022-01-11 19:06:03 +01:00
|
|
|
```
|
|
|
|
|
2022-01-05 19:20:22 +01:00
|
|
|
## X11
|
|
|
|
|
|
|
|
Append the following config to /usr/share/X11/xorg.conf.d/40-libinput.conf or use this and add it in startup script see `example_script.sh`
|
|
|
|
|
|
|
|
```bash
|
|
|
|
xinput disable XX # XX being the device id related to 'ASUSTeK ROG FALCHION System Control'
|
2022-01-11 19:06:03 +01:00
|
|
|
xinput disable "ASUSTeK ROG FALCHION System Control"
|
|
|
|
xinput disable "ASUSTeK ROG FALCHION Consumer Control"
|
|
|
|
xinput disable "ASUSTeK ROG GLADIUS III WIRELESS System Control"
|
|
|
|
xinput disable "ASUSTeK ROG GLADIUS III WIRELESS Consumer Control"
|
2022-05-05 23:02:15 +02:00
|
|
|
```
|