Advertisement
Doppytoo

remapper

Apr 9th, 2020
320
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.24 KB | None | 0 0
  1. import keyboard as kb
  2.  
  3. def lang():
  4.     kb.press('windows')
  5.     kb.press('space')
  6.     kb.release('windows')
  7.     kb.release('space')
  8.  
  9. kb.add_hotkey('ctrl+shift', lambda: kb.press_and_release('windows+space'))
  10.  
  11. kb.wait('windows+alt+esc')
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement