ahka

Assorted ease-of-use and functionality tools using AutoHotkey.
Log | Files | Refs

commit 2468be52a631fa90ad4a1391d5cdbe431250ff36
parent dc26569e3b2c4495947ac1e47ee5a6e7df44dfe9
Author: breadcat <sendforththegunboats@gmail.com>
Date:   Thu, 10 Oct 2013 22:46:25 +0100

Add window split, taskbar hiding, secret includes

Diffstat:
M.gitignore | 4++++
Mahk-assistant.ahk | 26++++++++++++++++++++++++--
2 files changed, 28 insertions(+), 2 deletions(-)

diff --git a/.gitignore b/.gitignore @@ -1,3 +1,6 @@ #http://www.naughter.com/qres.html resswitch.exe + +#physical and ip address replacements +secret.ahk +\ No newline at end of file diff --git a/ahk-assistant.ahk b/ahk-assistant.ahk @@ -80,9 +80,31 @@ Capslock::Backspace ;remap logitech m570 buttons XButton1::Send {Click 2} ;double click XButton2::Send {MButton} ;wheel click +#k:: ;split active and previous 2 windows side by side. +{ + Shift("R") + Send {AltDown}{Tab}{AltUp} + Shift("L") + Send {AltDown}{Tab}{AltUp} + return +} -;application specific hotkeys -#Include, %A_ScriptDir%\appspecific.ahk ;too many to include in index, deserves separating +#Include, %A_ScriptDir%\appspecific.ahk ;application specific hotkeys +#Include, %A_ScriptDir%\secret.ahk ;physical and ip address completions + +;hide/show taskbar toggle +#x:: +if toggle := !toggle + { + WinHide ahk_class Shell_TrayWnd + WinHide, Start ahk_class Button + } + else + { + WinShow ahk_class Shell_TrayWnd + WinShow, Start ahk_class Button + } +return ;auto replace text with symbols