I have just switched to Linux A and I want to make custom macros and I decided to make them with the library called xdotool
. I'm not sure if Python is used in Linux. My goal is to add a macro to easily press the "{" key, but it writes 0 using this code:
xdotool type "{}"
How can I print the {
key?
Python is cross-platform, just install that and use a module like
pyautogui
orkeyboard
to send the inputs.ex: