From 23d84b063fa599d988b053295397c93ebea7dd7a Mon Sep 17 00:00:00 2001 From: Luke Date: Sat, 2 May 2020 21:47:52 +1200 Subject: [PATCH] Update readme with PPA --- README.md | 21 +++++++++++++++++++-- debian/changelog | 2 +- rog-core/src/core.rs | 1 - 3 files changed, 20 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index f1dddff9..283ec3da 100644 --- a/README.md +++ b/README.md @@ -79,6 +79,23 @@ Currently the last used brightness and builtin mode will be saved when set, and 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 only. +## Ubuntu PPA + +``` +sudo add-apt-repository ppa:lukedjones/rog-core +sudo apt-get update +sudo install rog-core +``` + +and if the service isn't enabled: + +``` +sudo systemctl start rog-core.service +sudo systemctl enable rog-core.service +``` + +I can't guarantee stability of updating via PPA yet. + ## Other Laptops **Supported:** @@ -92,11 +109,11 @@ Fan mode toggling requires a newer kernel. I'm unsure when the patches required If the USB product ID is 0x1866 or 0x1869 then the per-key profile with hotkeys *should* work - 0x1866 is tested as this is what I have. -## Wireshark captures +### Wireshark captures TODO: see `./wireshark_data/` for some captures. -## Supporting more laptops +### 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. diff --git a/debian/changelog b/debian/changelog index ea25f36e..ec0f45dc 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,4 +1,4 @@ -rog-core (0.9.0) focal; urgency=medium +rog-core (0.9.1) focal; urgency=medium * Initial packaging diff --git a/rog-core/src/core.rs b/rog-core/src/core.rs index ee0c199e..03bb6b72 100644 --- a/rog-core/src/core.rs +++ b/rog-core/src/core.rs @@ -11,7 +11,6 @@ use std::marker::{PhantomData, PhantomPinned}; use std::path::Path; use std::process::Command; use std::ptr::NonNull; -use std::str::FromStr; use std::time::Duration; static LED_INIT1: [u8; 2] = [0x5d, 0xb9];