Bump up version to 1.1
This commit is contained in:
parent
4345d1f59d
commit
847f9441ad
16
README.md
16
README.md
|
@ -10,22 +10,26 @@ Inspired by and based on [g810-led](https://github.com/MatMoul/g810-led).
|
||||||
- Zenity
|
- Zenity
|
||||||
- **Root privileges**
|
- **Root privileges**
|
||||||
|
|
||||||
## Installation
|
## Downloads:
|
||||||
|
|
||||||
|
## Installation:
|
||||||
|
|
||||||
1) Clone the repository: `git clone https://github.com/q3aql/zenidrv-g203`
|
1) Clone the repository: `git clone https://github.com/q3aql/zenidrv-g203`
|
||||||
2) Install dependencies: `sudo apt-get install python3 python3-usb zenity coreutils`
|
2) Install dependencies: `sudo apt-get install python3 python3-usb zenity coreutils`
|
||||||
3) Change directory: `cd zenidrv-g203`
|
3) Change directory: `cd zenidrv-g203`
|
||||||
4) Install as root: `sudo make install`
|
4) Install as root: `sudo make install`
|
||||||
|
|
||||||
## Usage (GUI)
|
## Usage (GUI):
|
||||||
|
|
||||||
Open application from menu or run the following command as root:
|
Open application from menu or run the following command as root:
|
||||||
|
|
||||||
```
|
```
|
||||||
$ sudo zenidrv-g203
|
$ sudo zenidrv-g203
|
||||||
```
|
```
|
||||||
|
|
||||||
## Usage (CLI)
|
<img src="https://raw.githubusercontent.com/q3aql/zenidrv-g203/master/images/menu-zenity.png" width="876" />
|
||||||
|
|
||||||
|
## Usage (CLI):
|
||||||
|
|
||||||
```
|
```
|
||||||
Usage:
|
Usage:
|
||||||
|
@ -45,7 +49,7 @@ Additional features for G203 LightSync:
|
||||||
sudo g203-led.py lightsync triple {color color color} - Sets all 3 colors from left to right.
|
sudo g203-led.py lightsync triple {color color color} - Sets all 3 colors from left to right.
|
||||||
sudo g203-led.py lightsync wave {rate} [{brightness} [{direction}]] - Like cycle but appears to move right or left.
|
sudo g203-led.py lightsync wave {rate} [{brightness} [{direction}]] - Like cycle but appears to move right or left.
|
||||||
sudo g203-led.py lightsync blend [{rate} [{brightness}]] - Like breathe with the side colors changing after some delay.
|
sudo g203-led.py lightsync blend [{rate} [{brightness}]] - Like breathe with the side colors changing after some delay.
|
||||||
|
|
||||||
Direction is either "left" or "right". Default: right).
|
Direction is either "left" or "right". Default: right).
|
||||||
|
|
||||||
Note that the lightsync setting will not persist.
|
Note that the lightsync setting will not persist.
|
||||||
|
|
|
@ -2,13 +2,13 @@
|
||||||
|
|
||||||
#############################################################
|
#############################################################
|
||||||
# Zenity interface for G203 (Prodigy & Ligthsync) driver #
|
# Zenity interface for G203 (Prodigy & Ligthsync) driver #
|
||||||
# Last change: 28-03-2021 #
|
# Last change: 07-07-2021 #
|
||||||
# Author: q3aql #
|
# Author: q3aql #
|
||||||
# Contact: q3aql@protonmail.ch #
|
# Contact: q3aql@protonmail.ch #
|
||||||
# License: GPL v2.0 #
|
# License: GPL v2.0 #
|
||||||
#############################################################
|
#############################################################
|
||||||
VERSION="1.0"
|
VERSION="1.1"
|
||||||
M_DATE="060721"
|
M_DATE="070721"
|
||||||
|
|
||||||
# Variables
|
# Variables
|
||||||
iconPath="/usr/share/icons/logitech/logitech-black.png"
|
iconPath="/usr/share/icons/logitech/logitech-black.png"
|
||||||
|
|
|
@ -2,13 +2,13 @@
|
||||||
|
|
||||||
#############################################################
|
#############################################################
|
||||||
# Zenity interface for G203 (Prodigy & Ligthsync) driver #
|
# Zenity interface for G203 (Prodigy & Ligthsync) driver #
|
||||||
# Last change: 28-03-2021 #
|
# Last change: 07-07-2021 #
|
||||||
# Author: q3aql #
|
# Author: q3aql #
|
||||||
# Contact: q3aql@protonmail.ch #
|
# Contact: q3aql@protonmail.ch #
|
||||||
# License: GPL v2.0 #
|
# License: GPL v2.0 #
|
||||||
#############################################################
|
#############################################################
|
||||||
VERSION="1.0"
|
VERSION="1.1"
|
||||||
M_DATE="060721"
|
M_DATE="070721"
|
||||||
|
|
||||||
# Variables
|
# Variables
|
||||||
iconPath="/usr/share/icons/logitech/logitech-black.png"
|
iconPath="/usr/share/icons/logitech/logitech-black.png"
|
||||||
|
|
|
@ -2,13 +2,13 @@
|
||||||
|
|
||||||
#############################################################
|
#############################################################
|
||||||
# Zenity interface for G203 (Prodigy & Ligthsync) driver #
|
# Zenity interface for G203 (Prodigy & Ligthsync) driver #
|
||||||
# Last change: 28-03-2021 #
|
# Last change: 07-07-2021 #
|
||||||
# Author: q3aql #
|
# Author: q3aql #
|
||||||
# Contact: q3aql@protonmail.ch #
|
# Contact: q3aql@protonmail.ch #
|
||||||
# License: GPL v2.0 #
|
# License: GPL v2.0 #
|
||||||
#############################################################
|
#############################################################
|
||||||
VERSION="1.0"
|
VERSION="1.1"
|
||||||
M_DATE="060721"
|
M_DATE="070721"
|
||||||
|
|
||||||
# Variables
|
# Variables
|
||||||
iconPath="/usr/share/icons/logitech/logitech-black.png"
|
iconPath="/usr/share/icons/logitech/logitech-black.png"
|
||||||
|
|
|
@ -2,13 +2,13 @@
|
||||||
|
|
||||||
#############################################################
|
#############################################################
|
||||||
# Zenity interface for G203 (Prodigy & Ligthsync) driver #
|
# Zenity interface for G203 (Prodigy & Ligthsync) driver #
|
||||||
# Last change: 28-03-2021 #
|
# Last change: 07-07-2021 #
|
||||||
# Author: q3aql #
|
# Author: q3aql #
|
||||||
# Contact: q3aql@protonmail.ch #
|
# Contact: q3aql@protonmail.ch #
|
||||||
# License: GPL v2.0 #
|
# License: GPL v2.0 #
|
||||||
#############################################################
|
#############################################################
|
||||||
VERSION="1.0"
|
VERSION="1.1"
|
||||||
M_DATE="060721"
|
M_DATE="070721"
|
||||||
|
|
||||||
# Variables
|
# Variables
|
||||||
iconPath="/usr/share/icons/logitech/logitech-black.png"
|
iconPath="/usr/share/icons/logitech/logitech-black.png"
|
||||||
|
|
Loading…
Reference in New Issue
Block a user