diff --git a/autohotkey/win-blue.ahk b/autohotkey/win-blue.ahk new file mode 100644 index 0000000..201ce23 --- /dev/null +++ b/autohotkey/win-blue.ahk @@ -0,0 +1,6 @@ +#o:: ; Win + O auslösen +{ + Run, ms-settings:bluetooth ; Öffnet die Bluetooth-Einstellungen + return +} + diff --git a/autohotkey/win-close.ahk b/autohotkey/win-close.ahk new file mode 100644 index 0000000..404b3a4 --- /dev/null +++ b/autohotkey/win-close.ahk @@ -0,0 +1,8 @@ +;#NoTrayIcon +#c:: ; Win + C auslösen +{ + WinGet, active_id, ID, A ; Aktive Fenster-ID abrufen + WinClose, ahk_id %active_id% ; Aktives Fenster schließen + return +} + diff --git a/autohotkey/win-display.ahk b/autohotkey/win-display.ahk new file mode 100644 index 0000000..8cf7692 --- /dev/null +++ b/autohotkey/win-display.ahk @@ -0,0 +1,6 @@ +#m:: ; Win + M auslösen +{ + Run, DisplaySwitch.exe ; DisplaySwitch.exe ausführen + return +} + diff --git a/autohotkey/win-key.ahk b/autohotkey/win-key.ahk new file mode 100644 index 0000000..59e5c1d --- /dev/null +++ b/autohotkey/win-key.ahk @@ -0,0 +1,4 @@ +;#NoTrayIcon +~LWin::Send {LWin Down}{Shift Down} +~LWin Up::Send {LWin Up}{Shift Up} + diff --git a/autohotkey/win-run.ahk b/autohotkey/win-run.ahk new file mode 100644 index 0000000..4b57367 --- /dev/null +++ b/autohotkey/win-run.ahk @@ -0,0 +1,4 @@ +;#NoTrayIcon +#w:: +Run, powershell.exe -Command "(New-Object -ComObject 'Shell.Application').FileRun()",, Hide +return