Nach zwei Tagen, an denen ich einige Workflows getestet und getestet habe, habe ich mich damit abgefunden. Ich habe hier eine Kombination aus Phrasen-Express (jedes Makro-Programm funktioniert hier) und Autohotkey ausgeführt, so dass ich ein extrem flexibles Layout haben kann
F1 → Binded to WIN+1 key
F2 → Binded to WIN+2 key
F3 → Binded to Win+4 key
F4 → Binded to Win+4 key
Für die Tasten F5 bis F7 habe ich Autohotkey verwendet
F5::
IfWinNotExist, ahk_class Chrome_WidgetWin_1
Run, chrome.exe
GroupAdd, kjexplorers5, ahk_class Chrome_WidgetWin_1 ;You have to make a new group for each application, don't use the same one for all of them!
if WinActive("ahk_exe chrome.exe")
GroupActivate, kjexplorers5, r
else
WinActivate ahk_class Chrome_WidgetWin_1 ;you have to use WinActivatebottom if you didn't create a window group.
Return
F6::
IfWinNotExist, ahk_class ConsoleWindowClass
Run, cmd.exe
GroupAdd, kjexplorers6, ahk_class ConsoleWindowClass ;You have to make a new group for each application, don't use the same one for all of them!
if WinActive("ahk_exe cmd.exe")
GroupActivate, kjexplorers6, r
else
WinActivate ahk_class ConsoleWindowClass ;you have to use WinActivatebottom if you didn't create a window group.
Return
F7::
IfWinNotExist, ahk_class QWidget
Run, anki.exe
GroupAdd, kjexplorers7, ahk_class QWidget ;You have to make a new group for each application, don't use the same one for all of them!
if WinActive("ahk_exe anki.exe")
GroupActivate, kjexplorers7, r
else
WinActivate ahk_class QWidget ;you have to use WinActivatebottom if you didn't create a window group.
Return
F5 bis F7 verwendet die gleiche Variante des Autohotkeys, ich habe einfach die groupnames
, das .exe files
, und das ahk_class
Namen.
So strukturiere ich die Struktur meiner Windows-Taskleiste
Also drücke ich
- F5 (3 Mal), und es drückt jedes Chromfenster, das ich habe, auf jeden meiner 3 Monitore.
- F6 und ich können schnell alle Eingabeaufforderungen, die ich geöffnet habe, herausfinden, eine Eingabeaufforderung für gulp-Befehle und eine für git, unabhängig von jeder IDE.
- F7 zweimal, um schnell neue Karten hinzuzufügen
Ich kann F1 F2 F3 F4 auf die derzeit verwendete App umstrukturieren. Alles, was hier läuft, habe ich nur ein Fenster pro App zur Zeit. Als würde ich nur ein Firefox-Fenster ausführen (um Youtube-Videos zu sehen), nur eine laufende Anwendung von PHPstorm usw.
Demonstration der F6-Taste in Aktion (Eingabeaufforderung)
Win+4
entsprechend deinem Screenshot?