summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbreadcat2015-06-02 20:07:30 +0100
committerbreadcat2015-06-02 20:07:30 +0100
commitbeb80faba8853c594644d7b66c23208d3b308175 (patch)
tree93c65c1a874476986c1790d33b1f433d467c59d6
parent38354ff713b873ca4adae0eb949e2345c3f20428 (diff)
downloadahka-beb80faba8853c594644d7b66c23208d3b308175.tar.gz
ahka-beb80faba8853c594644d7b66c23208d3b308175.tar.bz2
ahka-beb80faba8853c594644d7b66c23208d3b308175.zip
Small fixes and additions
-rw-r--r--ahk-assistant.ahk19
-rw-r--r--functions.ahk4
2 files changed, 16 insertions, 7 deletions
diff --git a/ahk-assistant.ahk b/ahk-assistant.ahk
index 6b709c6..4485790 100644
--- a/ahk-assistant.ahk
+++ b/ahk-assistant.ahk
@@ -25,7 +25,7 @@ SetNumLockState, AlwaysOn
^q::Send !{F4} ;quit most programs
#+q::Run notepad "%A_MyDocuments%\Vault\docs\faulties.txt"
#w::Run firefox
-#+w::Run firefox -private-window
+#+w::Run firefox.exe -private-window
#e::dirWorking()
#+e::dirSync()
^!e::Run ::{20d04fe0-3aea-1069-a2d8-08002b30309d} ;my computer
@@ -64,6 +64,7 @@ Insert::appendClipboard()
;tiling
#Up::WinMaximize, A
#Down::WinMinimize, A
+#+Down::Send !{Esc} ;Send to bottom instead of minimise
#Left::Tile("L")
#Right::Tile("R")
#Numpad1::Tile("BL")
@@ -125,6 +126,7 @@ Ralt & e::typeAcuteE() ;awful, awful workaround
::consistant::consistent
::propogate::propagate
::refridgeration::refrigeration
+::secratery::secretary
;work stuff
::ctsty::Called to speak to you, their number is
::gtacb::Called to speak to you, can you give them a call back?
@@ -169,11 +171,12 @@ Ralt & e::typeAcuteE() ;awful, awful workaround
;application specific hotkeys
#IfWinActive ahk_class CabinetWClass ;explorer
CapsLock::explorerUp()
- F6::Send !d ;addressbar
+ Alt & Enter:: ;overflow
Ralt & Enter::Send {AppsKey}{Up}{Enter} ; ralt-enter properties
F1:: ;overflow to rename, help is useless in explorer
F2::explorerRename() ;rename commands
F3::explorerCMD()
+ F6::Send !d ;addressbar
^h::explorerHidden()
^+n::explorerNewDir()
^!+n::explorerNewFile()
@@ -184,6 +187,10 @@ Ralt & e::typeAcuteE() ;awful, awful workaround
Alt & Enter::toggleFullscreen() ;leave flash full screen with a keyboard command
#IfWinActive
+#IfWinActive ahk_class #32770 ;windows xp date/time picker
+ CapsLock::Send !{F4} ;quit
+#IfWinActive
+
#IfWinActive ahk_class FontViewWClass ;font previewer
CapsLock::Send !{F4} ;quit
#IfWinActive
@@ -208,8 +215,10 @@ Ralt & e::typeAcuteE() ;awful, awful workaround
#IfWinActive ahk_class SUMATRA_PDF_FRAME ;sumatra pdf
CapsLock::Send !{F4} ;quit
- ^b::Send {F12} ; ctrl+b for bookmarks
- !Enter::Send ^l ;fullscreen
+ ^b::Send {F12} ;C-b toggles bookmarks
+ ^t::Send !vt ;C-t toggles toolbar
+ Alt & Enter:: ;overflow
+ Ralt & Enter::Send ^l ;fullscreen
#IfWinActive
#IfWinActive ahk_class MediaPlayerClassicW ;mpc-hc
@@ -221,7 +230,7 @@ Ralt & e::typeAcuteE() ;awful, awful workaround
#IfWinActive ahk_class mpv ;mpv
Alt & Enter:: ;overflow to fullscreen below
- Ralt & Enter::Send f ; ralt-Enter fullscreens
+ Ralt & Enter::Send f ;ralt-Enter fullscreens
CapsLock::Send !{F4} ;quit
#IfWinActive
diff --git a/functions.ahk b/functions.ahk
index 652f1f3..69966d1 100644
--- a/functions.ahk
+++ b/functions.ahk
@@ -264,7 +264,7 @@ usePlaybackDevice(device) {
WinClose, Sound ahk_class #32770
}
-winSplit() { ;split active and previous window side by side, press again to swap positions
+winSplit() { ;split active and previous window side by side
Tile("R")
Sleep, 15
Send {AltDown}{Tab}{AltUp}
@@ -274,7 +274,7 @@ winSplit() { ;split active and previous window side by side, press again to swap
Send {AltDown}{Tab}{AltUp}
}
-winSplitH() { ;split active and previous window on top of each other, press again to swap positions
+winSplitH() { ;split active and previous window on top of each other
Tile("T")
Sleep, 15
Send {AltDown}{Tab}{AltUp}