Update readme with PPA

This commit is contained in:
Luke
2020-05-02 21:47:52 +12:00
parent 2e54242e55
commit 23d84b063f
3 changed files with 20 additions and 4 deletions

View File

@@ -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. 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 ## Other Laptops
**Supported:** **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. 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. 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. 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.

2
debian/changelog vendored
View File

@@ -1,4 +1,4 @@
rog-core (0.9.0) focal; urgency=medium rog-core (0.9.1) focal; urgency=medium
* Initial packaging * Initial packaging

View File

@@ -11,7 +11,6 @@ use std::marker::{PhantomData, PhantomPinned};
use std::path::Path; use std::path::Path;
use std::process::Command; use std::process::Command;
use std::ptr::NonNull; use std::ptr::NonNull;
use std::str::FromStr;
use std::time::Duration; use std::time::Duration;
static LED_INIT1: [u8; 2] = [0x5d, 0xb9]; static LED_INIT1: [u8; 2] = [0x5d, 0xb9];