Add “Mac” and “Win” to application names displayed

This commit is contained in:
Phillip Burgess 2021-07-26 14:11:04 -07:00
parent ee8c100cd0
commit 9f4911d7a7
6 changed files with 18 additions and 18 deletions

View file

@ -2,9 +2,9 @@
from adafruit_hid.keycode import Keycode # REQUIRED if using Keycode.* values from adafruit_hid.keycode import Keycode # REQUIRED if using Keycode.* values
app = { # REQUIRED dict, must be named 'app' app = { # REQUIRED dict, must be named 'app'
'name' : 'Illustrator', # Application name 'name' : 'Mac Illustrator', # Application name
'macros' : [ # List of button macros... 'macros' : [ # List of button macros...
# COLOR LABEL KEY SEQUENCE # COLOR LABEL KEY SEQUENCE
# 1st row ---------- # 1st row ----------
(0x004000, 'Undo', [Keycode.COMMAND, 'z']), (0x004000, 'Undo', [Keycode.COMMAND, 'z']),

View file

@ -2,9 +2,9 @@
from adafruit_hid.keycode import Keycode # REQUIRED if using Keycode.* values from adafruit_hid.keycode import Keycode # REQUIRED if using Keycode.* values
app = { # REQUIRED dict, must be named 'app' app = { # REQUIRED dict, must be named 'app'
'name' : 'Photoshop', # Application name 'name' : 'Mac Photoshop', # Application name
'macros' : [ # List of button macros... 'macros' : [ # List of button macros...
# COLOR LABEL KEY SEQUENCE # COLOR LABEL KEY SEQUENCE
# 1st row ---------- # 1st row ----------
(0x004000, 'Undo', [Keycode.COMMAND, 'z']), (0x004000, 'Undo', [Keycode.COMMAND, 'z']),

View file

@ -2,9 +2,9 @@
from adafruit_hid.keycode import Keycode # REQUIRED if using Keycode.* values from adafruit_hid.keycode import Keycode # REQUIRED if using Keycode.* values
app = { # REQUIRED dict, must be named 'app' app = { # REQUIRED dict, must be named 'app'
'name' : 'Safari', # Application name 'name' : 'Mac Safari', # Application name
'macros' : [ # List of button macros... 'macros' : [ # List of button macros...
# COLOR LABEL KEY SEQUENCE # COLOR LABEL KEY SEQUENCE
# 1st row ---------- # 1st row ----------
(0x004000, '< Back', [Keycode.COMMAND, '[']), (0x004000, '< Back', [Keycode.COMMAND, '[']),

View file

@ -2,9 +2,9 @@
from adafruit_hid.keycode import Keycode # REQUIRED if using Keycode.* values from adafruit_hid.keycode import Keycode # REQUIRED if using Keycode.* values
app = { # REQUIRED dict, must be named 'app' app = { # REQUIRED dict, must be named 'app'
'name' : 'Illustrator', # Application name 'name' : 'Win Illustrator', # Application name
'macros' : [ # List of button macros... 'macros' : [ # List of button macros...
# COLOR LABEL KEY SEQUENCE # COLOR LABEL KEY SEQUENCE
# 1st row ---------- # 1st row ----------
(0x004000, 'Undo', [Keycode.CONTROL, 'z']), (0x004000, 'Undo', [Keycode.CONTROL, 'z']),

View file

@ -2,9 +2,9 @@
from adafruit_hid.keycode import Keycode # REQUIRED if using Keycode.* values from adafruit_hid.keycode import Keycode # REQUIRED if using Keycode.* values
app = { # REQUIRED dict, must be named 'app' app = { # REQUIRED dict, must be named 'app'
'name' : 'Photoshop', # Application name 'name' : 'Win Photoshop', # Application name
'macros' : [ # List of button macros... 'macros' : [ # List of button macros...
# COLOR LABEL KEY SEQUENCE # COLOR LABEL KEY SEQUENCE
# 1st row ---------- # 1st row ----------
(0x004000, 'Undo', [Keycode.CONTROL, 'z']), (0x004000, 'Undo', [Keycode.CONTROL, 'z']),

View file

@ -2,9 +2,9 @@
from adafruit_hid.keycode import Keycode # REQUIRED if using Keycode.* values from adafruit_hid.keycode import Keycode # REQUIRED if using Keycode.* values
app = { # REQUIRED dict, must be named 'app' app = { # REQUIRED dict, must be named 'app'
'name' : 'Edge', # Application name 'name' : 'Windows Edge', # Application name
'macros' : [ # List of button macros... 'macros' : [ # List of button macros...
# COLOR LABEL KEY SEQUENCE # COLOR LABEL KEY SEQUENCE
# 1st row ---------- # 1st row ----------
(0x004000, '< Back', [Keycode.ALT, Keycode.LEFT_ARROW]), (0x004000, '< Back', [Keycode.ALT, Keycode.LEFT_ARROW]),