The MacroPad stays active including screen and lights even when the computer it is attached to, goes to sleep. This change provides a blank screen, sets all RGB lights to black and disables the bright background of the title bar when the title is empty (as on the blank screen).
28 lines
920 B
Python
Executable file
28 lines
920 B
Python
Executable file
# MACROPAD Hotkeys: blank screen for idle
|
|
# Contributed by GitHub @vitoni
|
|
|
|
|
|
app = { # REQUIRED dict, must be named 'app'
|
|
'name' : '', # Application name
|
|
'macros' : [ # List of button macros...
|
|
# COLOR LABEL KEY SEQUENCE
|
|
# 1st row ----------
|
|
(0x000000, '', []),
|
|
(0x000000, '', []),
|
|
(0x000000, '', []),
|
|
# 2nd row ----------
|
|
(0x000000, '', []),
|
|
(0x000000, '', []),
|
|
(0x000000, '', []),
|
|
# 3rd row ----------
|
|
(0x000000, '', []),
|
|
(0x000000, '', []),
|
|
(0x000000, '', []),
|
|
# 4th row ----------
|
|
(0x000000, '', []),
|
|
(0x000000, '', []),
|
|
(0x000000, '', []),
|
|
# Encoder button ---
|
|
(0x000000, '', [])
|
|
]
|
|
}
|