You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
276 B
13 lines
276 B
5 years ago
|
#! /bin/python3
|
||
|
|
||
|
from openrazer_command import Keyboard, Color
|
||
|
|
||
|
keyboard = Keyboard()
|
||
|
|
||
|
if not keyboard.found_keyboard():
|
||
|
print("No keyboard was found")
|
||
|
exit()
|
||
|
|
||
|
keyboard.set_static(Color(255,255,255))
|
||
|
keyboard.set_keys(Color.from_hex('ff0000'), 'enter')
|
||
|
keyboard.draw()
|