From 3fc69bdbd9bb1dbbecf611d93d5e5e429d74c551 Mon Sep 17 00:00:00 2001 From: Michael Date: Fri, 25 Dec 2020 17:57:36 -0500 Subject: [PATCH] Added Win+T and renamed Windows shortcut script. --- README.md | 4 ++-- autohotkey/RemapWinE+WinS.ahk | 10 ++++++++++ autohotkey/RemapWindowsShortcuts.ahk | 13 +++++++++++++ 3 files changed, 25 insertions(+), 2 deletions(-) create mode 100644 autohotkey/RemapWindowsShortcuts.ahk diff --git a/README.md b/README.md index 1e5c898..18fb1db 100644 --- a/README.md +++ b/README.md @@ -12,8 +12,8 @@ This isn't so much a script as some small quality of life improvements I've made ### AutoHotKey -**RemapWinE+WinS.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) +**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). 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. ### AppTweaks diff --git a/autohotkey/RemapWinE+WinS.ahk b/autohotkey/RemapWinE+WinS.ahk index a4ed3b8..c9bf44b 100644 --- a/autohotkey/RemapWinE+WinS.ahk +++ b/autohotkey/RemapWinE+WinS.ahk @@ -1,3 +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 diff --git a/autohotkey/RemapWindowsShortcuts.ahk b/autohotkey/RemapWindowsShortcuts.ahk new file mode 100644 index 0000000..c9bf44b --- /dev/null +++ b/autohotkey/RemapWindowsShortcuts.ahk @@ -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