Added Win+T and renamed Windows shortcut script.

master
parent bf7e5cc831
commit 3fc69bdbd9

@ -12,8 +12,8 @@ This isn't so much a script as some small quality of life improvements I've made
### AutoHotKey ### AutoHotKey
**RemapWinE+WinS.ahk** **RemapWindowsShortcuts.ahk**
This script will replace the Windows Key + E shortcut for explorer and the Windows Key + S shortcut for search with Explorer++ and Everything. (this does require you to have these programs already installed on your system) This script will replace the Windows Key + E shortcut for explorer and the Windows Key + S shortcut for search with Explorer++ and Everything (this does require you to have these programs already installed on your system). Also added is the Windows key + T to launch Windows Terminal (taken from launching terminal this way on XUbuntu).
Edit the script to point to the executables for each program and create a shortcut to your shell:startup folder to run on launch. Edit the script to point to the executables for each program and create a shortcut to your shell:startup folder to run on launch.
### AppTweaks ### AppTweaks

@ -1,3 +1,13 @@
; Replace with the pat to Explorer++
; https://explorerplusplus.com/
#e::run, "A:\Programs\ExplorerPP\Explorer++.exe" #e::run, "A:\Programs\ExplorerPP\Explorer++.exe"
; Replace with the path to Everything
; https://www.voidtools.com/
#s::run, "A:\Programs\Everything\Everything.exe" #s::run, "A:\Programs\Everything\Everything.exe"
; This simply starts Windows Terminal
#t::run, wt
; Kill AutoHotKey from task manager if you need to stop it
#NoTrayIcon #NoTrayIcon

@ -0,0 +1,13 @@
; Replace with the pat to Explorer++
; https://explorerplusplus.com/
#e::run, "A:\Programs\ExplorerPP\Explorer++.exe"
; Replace with the path to Everything
; https://www.voidtools.com/
#s::run, "A:\Programs\Everything\Everything.exe"
; This simply starts Windows Terminal
#t::run, wt
; Kill AutoHotKey from task manager if you need to stop it
#NoTrayIcon
Loading…
Cancel
Save