7.4 KiB
ROG-Core
rog-core is a utility for Linux to control many aspects (eventually) of the ASUS ROG laptops like the Zephyrus GX502GW.
One of the benefits of this app (for me at least) is that you don't require a kernel with correct support for the laptop, or custom patched modules. The app reads and writes direct to the device interrupts, and can be customised (in source) quite extensively to do what you want such as directly controlling your laptop backlight rather than emitting a key-press for the DE to handle. There is also the possibility of rebinding fn keys to be macros which emit a series of keyboard presses.
The laptop I currently have is the GX502RW and so I'll be using that for the basis of this app. If I get wireshark captures from others with different ROG laptops then I should be able to add them.
I'm now looking at the kernel source to see if I can add the inputs correctly so they show up as proper evdev events.
Discord
Implemented
- Setting/modifying built-in LED modes
- Per-key LED setting (PARTIALLY COMPLETE)
- Fancy LED modes (See examples)
- Daemon mode
- Saving settings for reload
- System control
- ROG key custom mapping (Can be done in source)
- Fan/Performance mode
- Screen off? Now mapped to a keycode but has no effect
- Screen brightness up/down
- Touchpad toggle (using a virtual keyboard to emit F21...)
- Sleep
- Airplane mode
- Capture and use hotkeys
- Aura control by Aura keys
- Volume + media controls work
- Mic mute - unsure which key should be emitted for this to work. The key by itself emits a code.
- Logging - required for journalctl
- AniMatrix display on G14 models that include it
SUPPORTED LAPTOPS
- GM501 (multizone needs testing)
- GX502
- GX531
- G531GT
- GA14/GA401 is supported, including the AniMe display. You will need kernel patches.
- GA15/GA502 appears to have most things working
Please help test or provide info for:
- GL703(0x1869)
- GL553(0x1854) GL753 (attempted support from researching 2nd-hand info, multizone may work)
Laptop support is added on a per-case basis as the EC for the keyboard varies a little between models, e.g, some RGB modes are missing, or it's a single colour
Requirements for compiling
rustc+cargo+makelibusb-1.0-0-devlibdbus-1-devllvmlibclang-dev
Installing
Run make then sudo make install. If you want to use the daemon mode on system boot you'll need to enable and start
the systemd service with:
$ sudo systemctl start rog-core.service
$ sudo systemctl enable rog-core.service
If you are upgrading from a previous installed version, you will also need to reload service files.
$ sudo systemctl daemon-reload
You may also need to activate the service for debian install. If running Pop!_OS, I suggest disabling system76-power
gnome-shell extension, or at least limiting use of the power-management parts as rog-core lets you set the same things
(one or the other will overwrite pstates). I will create a shell extension at some point similar to system76, but using
the rog-core parts. It is safe to leave system76-power.service enabled and use for switching between graphics modes.
Ubuntu PPA
Alternatively, instead of building manually you can use the PPA.
sudo add-apt-repository ppa:lukedjones/rog-core
sudo apt-get update
sudo install rog-core
enable and start the service:
sudo systemctl start rog-core.service
sudo systemctl enable rog-core.service
Gentoo ebuild
Thanks to @aspann you can grab it here sys-power/rog-core
Arch AUR
You can find the thingimajig here
Updating
Occasionally I might break things for you by tweaking or changing the config file layout. Usually this will mean you
need to remove /etc/rog-core.conf and restart the daemon to create a new one. You can back up the old one and copy
settings back over (then restart daemon again).
Usage
NOTE! Fan mode toggling requires a newer kernel. I'm unsure when the patches required for it got merged - I've tested with the 5.6.6 kernel and above only. To see if the fan-mode changed cat either:
cat /sys/devices/platform/asus-nb-wmi/throttle_thermal_policyorcat /sys/devices/platform/asus-nb-wmi/fan_boost_mode
The numbers are 0 = Normal/Balanced, 1 = Boost, 2 = Silent.
Running the program as a daemon manually will require root. Standard (non-daemon) mode expects to be communicating with the daemon mode over dbus.
Commands are given by:
rog-core <option> <command> <command-options>
Help is available through:
rog-core --help
rog-core <command> --help
Some commands may have subcommands:
rog-core <command> <subcommand> --help
Daemon mode
If the daemon service is enabled then on boot the following will be reloaded from save:
- LED brightness
- Last used built-in mode
- fan-boost/thermal mode
The daemon also saves the settings per mode as the keyboard does not do this itself - this means cycling through modes with the Aura keys will use the settings that were used via CLI.
Daemon mode creates a config file at /etc/rogcore.conf which you can edit a little of. Most parts will be byte arrays,
but you can adjust things like mode_performance.
DBUS Input
Paths:
pub static DBUS_NAME: &str = "org.rogcore.Daemon";
pub static DBUS_PATH: &str = "/org/rogcore/Daemon";
pub static DBUS_IFACE: &str = "org.rogcore.Daemon";
Commands: FanMode, LedWriteBytes, LedWriteMultizone, LedWriteEffect
TODO: fill in this info
AniMe input
You will want to look at what MeuMeu has done with https://github.com/Meumeu/ZephyrusBling/
Wireshark captures
TODO: see ./wireshark_data/ for some captures.
Supporting more laptops
At a minimum it probably needs to be a Zephyrus laptop. If there is enough interest I will remove the restriction on board names so that anyone can try the app.
From there I'll need wireshark captures from Windows using Armoury Crate if possible:
- No USB devices plugged in
- One action per capture, 2 or 3 times
- An action may be switching a mode or pressing a button
The real ticket items are:
- Captures from installing Armoury Crate. To do this you need to uninstall almost all ASUS junkware and such
- Byte sequence captures from hotkeys pressed in linux (which I need to make a tool for)
- lsusb output
lsusb:
First do lsusb |grep 0b05 and check the part after 0b05:, output looks like:
Bus 001 Device 005: ID 0b05:1866 ASUSTek Computer, Inc. N-KEY Device
Then do sudo lsusb -vd 0b05:1866 > ~/laptop_info and give that to me.
Other helpful info can be gained from sudo usbhid-dump, for which you may need to unload kernel drivers. Please google
this.
Also required (for my book-keeping of data):
cat /sys/class/dmi/id/product_namecat /sys/class/dmi/id/product_familycat /sys/class/dmi/id/board_name
License
Mozilla Public License 2 (MPL-2.0)
Credits
- flukejones, project maintainer.
- tuxuser
- aspann
- meumeu
- Anyone missed? Please contact me