I am trying to find a way to have multiple hotkeys that will paste different strings in windows.
currently using (from so):
import os
def add_to_clipboard(text):
command = 'echo ' + text.strip() + '| clip'
os.system(command)
add_to_clipboard("this string is now in clipboard")
which will paste when Ctrl + v is pressed. Is there a way using os to add another command to os system that will paste when I press another custom hotkey, such as Alt + space?