Adjust keyboard shortcuts for the Elgato Key Lights
- add keyboard shortcuts to increase/decrease the color temperature - simplify (i.e., unify) all the shortcuts to only come in one variant
This commit is contained in:
parent
1cbb8baa91
commit
e98a39091e
3 changed files with 41 additions and 22 deletions
12
.config/gnome-settings/elgato/dec_color.py
Executable file
12
.config/gnome-settings/elgato/dec_color.py
Executable file
|
|
@ -0,0 +1,12 @@
|
|||
#!/usr/bin/env python
|
||||
|
||||
import leglight
|
||||
|
||||
LEFT_KEYLIGHT_IP = "192.168.190.62"
|
||||
RIGHT_KEYLIGHT_IP = "192.168.190.63"
|
||||
|
||||
left = leglight.LegLight(LEFT_KEYLIGHT_IP, port=9123)
|
||||
right = leglight.LegLight(RIGHT_KEYLIGHT_IP, port=9123)
|
||||
|
||||
left.decColor(200)
|
||||
right.decColor(200)
|
||||
12
.config/gnome-settings/elgato/inc_color.py
Executable file
12
.config/gnome-settings/elgato/inc_color.py
Executable file
|
|
@ -0,0 +1,12 @@
|
|||
#!/usr/bin/env python
|
||||
|
||||
import leglight
|
||||
|
||||
LEFT_KEYLIGHT_IP = "192.168.190.62"
|
||||
RIGHT_KEYLIGHT_IP = "192.168.190.63"
|
||||
|
||||
left = leglight.LegLight(LEFT_KEYLIGHT_IP, port=9123)
|
||||
right = leglight.LegLight(RIGHT_KEYLIGHT_IP, port=9123)
|
||||
|
||||
left.incColor(200)
|
||||
right.incColor(200)
|
||||
Loading…
Add table
Add a link
Reference in a new issue