Last active
August 23, 2022 14:00
-
-
Save AkazaRenn/e9f7680cb20f84fd5986d92056b46e98 to your computer and use it in GitHub Desktop.
AHK script to remap your left win key to PowerToys Run without breaking other win-key-related hotkeys
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<#V::>#V ; fix the non-sense problem with win+v | |
$LWin Up:: | |
If (A_PriorKey = "LWin") | |
Send ^+!#S ; or whatever shortcut you set for PTRun | |
return |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment