First post, by Lylat1an
- Rank
- Member
I apologize if this was the wrong place to ask, but it seemed the most appropriate on this site.
My goal is to use macros to make a few Windows keyboard shortcuts work on an IBM model M despite the keyboard not having Windows keys: For example Win+E would become ALT+E to open File Explorer, without remapping ALT to a Windows key.
However, the programmer isn't accepting my codes. Can somebody help me troubleshoot them?
# Layers
layerblock
# Layers here
endblock
# Remappings
remapblock
# Remappings here
endblock
# Macros
macroblock
# Macros here
macro LALT E
MAKE LGUI
PRESS E
BREAK LGUI
endmacro
macro LALT G
MAKE LGUI
PRESS G
BREAK LGUI
endmacro
macro RALT PAUSE
MAKE RGUI
PRESS PAUSE
BREAK RGUI
endmacro
endblock