1
1
Fork 0
mirror of https://github.com/Djuuu/AutoHotkey.git synced 2025-12-09 10:45:32 +01:00
My AutoHotkey scripts
Find a file
2025-12-02 20:04:48 +01:00
Lib TrayIcon.ahk - error handling in TrayIcon_GetInfo() 2024-07-08 01:13:14 +02:00
programs Browser mouse shortcuts 2025-12-02 20:04:48 +01:00
scripts Formatting 2024-12-15 13:22:08 +01:00
shortcuts 🛠️ 2025-10-08 20:10:44 +02:00
.editorconfig Linting 2024-07-10 00:35:37 +02:00
.gitattributes Current scripts 2017-04-21 13:22:45 +02:00
.gitignore [refactor] Use single configuration file 2023-04-12 19:43:41 +02:00
AutoHotkey.ahk App mouse shortcuts 2025-10-11 18:46:18 +02:00
config.local.ahk.dist Shorten bash aliases shortcut 2024-12-15 20:09:07 +01:00
Install.ahk [refactor] Use single configuration file 2023-04-12 19:43:41 +02:00
README.md App mouse shortcuts 2025-10-11 18:46:18 +02:00

AutoHotkey

My AutoHotkey v2 scripts

Scripts

  • Install.ahk
    Installs local configuration file if it doesn't exist.

  • AutoHotkey.ahk
    Main script.

Configuration

config.local.ahk

;;; Screen resolution configuration
ResolutionXLeft := -1920
ResolutionYLeft := 1080
ResolutionXRight := 1920
ResolutionYRight := 1080

;;; Alternate monitor source configuration
; Value depends on your monitor brand & model
; This tool can help: https://www.nirsoft.net/utils/control_my_monitor.html
DisplayToToggle        := "DISPLAY1"
AlternateMonitorSource := 1

;;; Default search URL
defaultSearchUrl := "https://duckduckgo.com/?q="
;defaultSearchUrl := "https://www.google.com/search?q="
;defaultSearchUrl := "https://www.bing.com/search?q="
;defaultSearchUrl := "https://www.qwant.com/?q="

;;; Bash aliases URL
bashAliasesUrl := "https://tardot.dev/sh"

Documentation