Skip to content

Commit 9f4911d

Browse files
Add “Mac” and “Win” to application names displayed
1 parent ee8c100 commit 9f4911d

6 files changed

Lines changed: 18 additions & 18 deletions

File tree

Macropad_Hotkeys/macros/mac-adobe-illustrator.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

33
from adafruit_hid.keycode import Keycode # REQUIRED if using Keycode.* values
44

5-
app = { # REQUIRED dict, must be named 'app'
6-
'name' : 'Illustrator', # Application name
7-
'macros' : [ # List of button macros...
5+
app = { # REQUIRED dict, must be named 'app'
6+
'name' : 'Mac Illustrator', # Application name
7+
'macros' : [ # List of button macros...
88
# COLOR LABEL KEY SEQUENCE
99
# 1st row ----------
1010
(0x004000, 'Undo', [Keycode.COMMAND, 'z']),

Macropad_Hotkeys/macros/mac-adobe-photoshop.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

33
from adafruit_hid.keycode import Keycode # REQUIRED if using Keycode.* values
44

5-
app = { # REQUIRED dict, must be named 'app'
6-
'name' : 'Photoshop', # Application name
7-
'macros' : [ # List of button macros...
5+
app = { # REQUIRED dict, must be named 'app'
6+
'name' : 'Mac Photoshop', # Application name
7+
'macros' : [ # List of button macros...
88
# COLOR LABEL KEY SEQUENCE
99
# 1st row ----------
1010
(0x004000, 'Undo', [Keycode.COMMAND, 'z']),

Macropad_Hotkeys/macros/mac-safari.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

33
from adafruit_hid.keycode import Keycode # REQUIRED if using Keycode.* values
44

5-
app = { # REQUIRED dict, must be named 'app'
6-
'name' : 'Safari', # Application name
7-
'macros' : [ # List of button macros...
5+
app = { # REQUIRED dict, must be named 'app'
6+
'name' : 'Mac Safari', # Application name
7+
'macros' : [ # List of button macros...
88
# COLOR LABEL KEY SEQUENCE
99
# 1st row ----------
1010
(0x004000, '< Back', [Keycode.COMMAND, '[']),

Macropad_Hotkeys/macros/win-adobe-illustrator.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

33
from adafruit_hid.keycode import Keycode # REQUIRED if using Keycode.* values
44

5-
app = { # REQUIRED dict, must be named 'app'
6-
'name' : 'Illustrator', # Application name
7-
'macros' : [ # List of button macros...
5+
app = { # REQUIRED dict, must be named 'app'
6+
'name' : 'Win Illustrator', # Application name
7+
'macros' : [ # List of button macros...
88
# COLOR LABEL KEY SEQUENCE
99
# 1st row ----------
1010
(0x004000, 'Undo', [Keycode.CONTROL, 'z']),

Macropad_Hotkeys/macros/win-adobe-photoshop.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

33
from adafruit_hid.keycode import Keycode # REQUIRED if using Keycode.* values
44

5-
app = { # REQUIRED dict, must be named 'app'
6-
'name' : 'Photoshop', # Application name
7-
'macros' : [ # List of button macros...
5+
app = { # REQUIRED dict, must be named 'app'
6+
'name' : 'Win Photoshop', # Application name
7+
'macros' : [ # List of button macros...
88
# COLOR LABEL KEY SEQUENCE
99
# 1st row ----------
1010
(0x004000, 'Undo', [Keycode.CONTROL, 'z']),

Macropad_Hotkeys/macros/win-edge.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

33
from adafruit_hid.keycode import Keycode # REQUIRED if using Keycode.* values
44

5-
app = { # REQUIRED dict, must be named 'app'
6-
'name' : 'Edge', # Application name
7-
'macros' : [ # List of button macros...
5+
app = { # REQUIRED dict, must be named 'app'
6+
'name' : 'Windows Edge', # Application name
7+
'macros' : [ # List of button macros...
88
# COLOR LABEL KEY SEQUENCE
99
# 1st row ----------
1010
(0x004000, '< Back', [Keycode.ALT, Keycode.LEFT_ARROW]),

0 commit comments

Comments
 (0)