Compare commits

...

3 commits
v0.2 ... master

Author SHA1 Message Date
Dmitry Isaenko
b03bc51b2a +info regarding compatible motherboard
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
2025-03-29 17:13:02 +03:00
Dmitry Isaenko
55c87df890 Update readme
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
2025-03-11 22:25:28 +03:00
Dmitry Isaenko
6b24a03ff1 add a bit more information
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
2025-02-27 23:56:38 +03:00
2 changed files with 46 additions and 3 deletions

View file

@ -5,8 +5,15 @@
Reference hardware used: Z890 AORUS PRO ICE, 048d:5711 Integrated Technology Express, Inc. GIGABYTE Device Reference hardware used: Z890 AORUS PRO ICE, 048d:5711 Integrated Technology Express, Inc. GIGABYTE Device
Information regarding other motherboards: Information regarding compatible motherboards:
* *[X870 AORUS ELITE WIFI7](https://github.com/developersu/argbColors/issues/2)* * *[X870 AORUS ELITE WIFI7](https://github.com/developersu/argbColors/issues/2)*
* *[X870E AORUS MASTER](https://github.com/developersu/argbColors/issues/5#issuecomment-2762690239)*
* *[X870E AORUS PRO](https://github.com/developersu/argbColors/issues/3)*
* *[Z890 AORUS ELITE WIFI7](https://github.com/developersu/argbColors/issues/4)*
* Z890 AORUS PRO ICE
Does your motherboard work too? [Come on, tell me!](https://github.com/developersu/argbColors/issues/5)
### udev rules ### udev rules
@ -21,10 +28,46 @@ SUBSYSTEM=="usb", ATTRS{idVendor}=="048d", ATTRS{idProduct}=="5711", MODE="0666"
See SPECIFICATION.md See SPECIFICATION.md
### Requirements
* libusb
### Usage examples
```
Set color ff2f00:
$ argb-colors
Set one color:
$ argb-colors -c ff00ff
Set 'wave' effect:
$ argb-colors -s wave
Set:
- one color 0000ff and default brightness for region 1,
- cycle effect with brightness of 2 and intensity of 3 for region 2,
- impulse effect with intensity of 0 and color of ff0000 for region 3,
- flash effect with color ff00ff, default value of intensity and brightness of 1 for zone 4,
- flash2 effect with all default values for zone 5,
- one color of default value with brightness of 3 for zone 5
$ argb-colors -e --c1=0000ff --z1=color --z2=cycle --i2=3 --b2=4 --z3=impulse --i3=0 --c3=ff0000 --z4=flash --c4=ff00ff --b4=1 --z5=flash2 --z6=color --i6=3
Set impulse effect with color of af0f0f, intensity of 0 and brightness of 4
$ argb-colors -s impulse -i 0 -b 4 -c af0f0f
Get help and usage information:
$ argb-colors --help
```
##### Todo:
* Remove feature with '-v' option that occasionally causes segfault
* Set correct CI pipeline
### License ### License
[![GNU GPLv3 Image](https://www.gnu.org/graphics/gplv3-127x51.png)](https://www.gnu.org/licenses/gpl-3.0.en.html) [![GNU GPLv3 Image](https://www.gnu.org/graphics/gplv3-127x51.png)](https://www.gnu.org/licenses/gpl-3.0.en.html)
argbColors is a free software licensed under GPL v3.0 It is distributed in the hope that it will be useful, but **WITHOUT ANY WARRANTY**. [GNU General Public License](https://www.gnu.org/licenses/gpl.html) as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. argb-colors is a free software licensed under GPL v3.0 It is distributed in the hope that it will be useful, but **WITHOUT ANY WARRANTY**. [GNU General Public License](https://www.gnu.org/licenses/gpl.html) as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
This application is in no way affiliated with GIGABYTE, Integrated Technology Express or any of its partners This application is in no way affiliated with GIGABYTE, Integrated Technology Express or any of its partners

View file

@ -9,7 +9,7 @@ enum separate_options {
}; };
const char *argp_program_version = "argb-color 0.2\n\n\ const char *argp_program_version = "argb-color 0.2\n\n\
License: GPLv3+: GNU GPL version 3 or newer <https://gnu.org/licenses/gpl.html>.\n\ License: GNU GPL version 3 or newer <https://gnu.org/licenses/gpl.html>.\n\
Dmitry Isaenko, 2025, Russia.\n\ Dmitry Isaenko, 2025, Russia.\n\
https://redrise.ru, https://github.com/developersu"; https://redrise.ru, https://github.com/developersu";
const char *argp_program_bug_address = "https://github.com/developersu/argbColors/issues/"; const char *argp_program_bug_address = "https://github.com/developersu/argbColors/issues/";