summaryrefslogblamecommitdiffstats
path: root/ahk-assistant.ahk
blob: db4a2c3d59fb1d9646b73e022b691c11294555a2 (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-window
#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
  Send %CurrentDateTime%
  return
#+Space:: ;date and time insert
  FormatTime, CurrentDateTime,, yyyy-MM