diff options
author | John Ankarström <john@ankarstrom.se> | 2020-11-20 15:10:31 +0100 |
---|---|---|
committer | John Ankarström <john@ankarstrom.se> | 2020-11-20 15:10:31 +0100 |
commit | 671b8bf7769ea2e9f0c6ffa63021ccbfb7d4b668 (patch) | |
tree | 2726e8d405c02def66a9d332d292ad2ad9c6c80f | |
parent | 5d0a841e08e9f032051db52ad2793b77df58fb6d (diff) | |
download | ahk-671b8bf7769ea2e9f0c6ffa63021ccbfb7d4b668.tar.gz |
add enable/disable proxy hotkeys
This enables/disables the proxy in Internet Options.
-rw-r--r-- | build.bat | 1 | ||||
-rw-r--r-- | scripts.ahk | 5 | ||||
-rw-r--r-- | toggleproxy.exe | bin | 0 -> 53760 bytes |
3 files changed, 6 insertions, 0 deletions
@@ -6,4 +6,5 @@ if not exist %out%\ md %out% || exit /b 1 for %%f in ("*.ico") do if not exist %out%\%%f copy /y "%%f" %out% for %%f in ("*.bmp") do if not exist %out%\%%f copy /y "%%f" %out% for %%f in ("*.reg") do if not exist %out%\%%f copy /y "%%f" %out% +if not exist %out%\toggleproxy.exe copy /y toggleproxy.exe %out% type tt.*.ahk 2>nul | tt -c"" -d";;" -o%out%/ scripts.ahk || pause
\ No newline at end of file diff --git a/scripts.ahk b/scripts.ahk index 5d4b945..797668e 100644 --- a/scripts.ahk +++ b/scripts.ahk @@ -48,6 +48,11 @@ Run, reg import "%A_ScriptDir%\mypal.reg",, Hide DllCall("Shell32\SHChangeNotify", UInt, 0x08000000, UInt, 0, UIntP, 0, UIntP, 0) return +; Enable/disable proxy server + +#^p::Run, toggleproxy 1,, Hide +#!p::Run, toggleproxy 0,, Hide + ; Sleep ^+F12 Up:: diff --git a/toggleproxy.exe b/toggleproxy.exe Binary files differnew file mode 100644 index 0000000..2f0e2d4 --- /dev/null +++ b/toggleproxy.exe |