Advertisement
Guest User

Untitled

a guest
Apr 1st, 2020
153
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. ;Combined as one script
  2. Menu, Tray, Tip, NumLock_and_CapsLock Enforcer
  3. #SingleInstance force
  4. ;#NoTrayIcon
  5. #InstallKeybdHook
  6. #Persistent
  7.  
  8. appname=NumCapsLock Enforcer
  9. SetTimer, EnforceNumCapsLock, 300
  10. Return
  11.  
  12. EnforceNumCapsLock:
  13. CapsLockStatus := GetKeyState("Capslock", "T")
  14. IfEqual, CapsLockStatus, 1
  15. {
  16. SetCapsLockState, Off
  17. }
  18.  
  19. NumLockStatus := GetKeyState("Numlock", "T")
  20. IfEqual, NumLockStatus, 0
  21. {
  22. SetNumLockState, On
  23. }
  24.  
  25. Return
  26.  
  27. ^!r::Reload
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement