Dateien nach "autohotkey" hochladen

This commit is contained in:
develcookingtest 2024-03-20 16:04:30 +00:00
parent 45e2b1517d
commit 6d4feccd62
5 changed files with 28 additions and 0 deletions

6
autohotkey/win-blue.ahk Normal file
View File

@ -0,0 +1,6 @@
#o:: ; Win + O auslösen
{
Run, ms-settings:bluetooth ; Öffnet die Bluetooth-Einstellungen
return
}

8
autohotkey/win-close.ahk Normal file
View File

@ -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
}

View File

@ -0,0 +1,6 @@
#m:: ; Win + M auslösen
{
Run, DisplaySwitch.exe ; DisplaySwitch.exe ausführen
return
}

4
autohotkey/win-key.ahk Normal file
View File

@ -0,0 +1,4 @@
;#NoTrayIcon
~LWin::Send {LWin Down}{Shift Down}
~LWin Up::Send {LWin Up}{Shift Up}

4
autohotkey/win-run.ahk Normal file
View File

@ -0,0 +1,4 @@
;#NoTrayIcon
#w::
Run, powershell.exe -Command "(New-Object -ComObject 'Shell.Application').FileRun()",, Hide
return