summaryrefslogblamecommitdiffstats
path: root/ahk-assistant.ahk
blob: fc42054ac75d3be2d8a022163217eb59ee4ce0dc (plain) (tree)
1
2
3
4
5
6
7
8
9
10
 
                        
 
 


                     


                            
                                 





                             


                                                                       
 

               
                                  
                                                              

                             


                                
                              


      
                                           




                               
                                    


      
                                       

        
                                                              


                                         
           

                        
                                            


      
                                               

        
              

                        
                                                      


      
                                                         

        

                                                                           
                                     
                                           


                     

                             

                                                                                        









                                                                







                                                       





                                                 
                     










                                                                                                                                 













                                                                       




                               
                  




                          
                      
                      

                                                 
                                                               







                            
                          



                       


                        
                       
                       
                           
                           




                     

                          

                     



                                                            


                        
                                  


      
                                        




                        
                      








                             
                             


      





                                   

        
 













                        






























                                                                   
 
                                    





































































                                                                                           
; ^ctrl #win !alt +shift


;environment
#NoEnv
#SingleInstance,Force
SetTimer, ScriptReload, 1000
SetWinDelay,2
CoordMode,Mouse
SetWorkingDir %A_MyDocuments%\..\

;keystates
SetCapsLockState, AlwaysOff
SetScrollLockState, AlwaysOff
SetNumLockState, AlwaysOn

;includes
#Include, %A_ScriptDir%\appspecific.ahk ;application specific hotkeys
#Include, %A_ScriptDir%\secret.ahk ;physical and ip address completions

;hotkeys
#q::Run notepad
^q::Send !{F4} ;quit most programs
#+q::Run notepad.exe "%A_MyDocuments%\Vault\docs\faulties.txt"
#w::Run firefox.exe
#+w::Run firefox.exe -private
#e:: ;launch documents directory
if A_OSVersion in WIN_XP
  {
  Run explorer %A_MyDocuments%
  }
  Else
  {
  Run explorer %A_MyDocuments%\..\Downloads
  }
  Return
#+e:: ;launch dropbox directory
if A_OSVersion in WIN_XP
  {
  Run explorer %A_MyDocuments%\Vault
  }
  Else
  {
  Run explorer %A_MyDocuments%\..\Vault
  }
  Return
^!e::Run ::{20d04fe0-3aea-1069-a2d8-08002b30309d} ;my computer
^!r::Run mstsc ;remote desktop connection
#t::Run C:\cygwin\bin\mintty.exe -
#+t::Run cmd
#p:: ;putty
if A_OSVersion in WIN_XP
  {
  Run "%A_MyDocuments%\Vault\conf\putty.exe"
  }
  Else
  {
  Run "%A_MyDocuments%\..\Vault\conf\putty.exe"
  }
  Return
^!k:: ;keepass
if A_OSVersion in WIN_XP
  {
  Run "%A_MyDocuments%\Vault\docs\keepass\KeePass.exe"
  }
  Else
  {
  Run "%A_MyDocuments%\..\Vault\docs\keepass\KeePass.exe"
  }
  Return
#c::Run calc
#\::SendMessage 0x112, 0xF170, 2, , Program Manager ;win+\ - screen standby
SC029::Send, 0 ;Backticks send zeroes
^SC029::Send, `` ;C-Backtick send backticks
RAlt & j::ShiftAltTab
RAlt & k::AltTab
Capslock::Backspace
!^0::SoundSet +5 ;volume up
!^9::SoundSet -5 ;volume down
^!+Up::run %A_ScriptDir%\resswitch.exe /WIDTH:1920 /HEIGHT:1080 ;1080p screen resolution
^!+Down::run %A_ScriptDir%\resswitch.exe /WIDTH:1280 /HEIGHT:720 ;720p screen resolution
XButton1::Send {Click 2} ;remap logitech m570 x1 to double click
XButton2::Send {MButton} ;remap logitech m570 x2 to wheel click
#Space:: ;date insert
	FormatTime, CurrentDateTime,, yyyy-MM-dd
	SendInput %CurrentDateTime%
  return
#+Space:: ;date and time insert
	FormatTime, CurrentDateTime,, yyyy-MM-ddTHH:mm
	SendInput %CurrentDateTime%
  return
#k:: ;split active and previous 2 windows side by side.
{
	Shift("R")
	Send {AltDown}{Tab}{AltUp}
	Shift("L")
	Send {AltDown}{Tab}{AltUp}
	return
}
Insert:: ;insert appends to clipboard
	newclipboard = %clipboard%
	Send, ^c
	clipboard = %newclipboard%`r`n%clipboard%
  return
#x:: ;hide/show taskbar toggle
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
^!Space:: ;toggle between default audio output (http://ml.pe/optimizing/2013/changing-the-default-sound-device-using-autohotkey/)
    switch := !switch
    If (switch)
        usePlaybackDevice(1)
    else