Compare commits
3 Commits
446bd36b91
...
main
Author | SHA1 | Date | |
---|---|---|---|
661ee354e9 | |||
c5c5b53ddd | |||
a11ec34202 |
32
main.ahk
32
main.ahk
@ -19,6 +19,28 @@ DownloadYoutubeVideo(dataType)
|
|||||||
}
|
}
|
||||||
OnClipboardChange DownloadYoutubeVideo
|
OnClipboardChange DownloadYoutubeVideo
|
||||||
|
|
||||||
|
; Focus the web browser if there is one open.
|
||||||
|
^!+#b:: ; Capslock+b to open a browser
|
||||||
|
{
|
||||||
|
browserID := WinExist("ahk_exe firefox.exe")
|
||||||
|
|
||||||
|
if (browserID) {
|
||||||
|
WinActivate(browserID)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
; Focus VS Code if there is one open.
|
||||||
|
; This may not work properly if there are more than one instances of VS Code running.
|
||||||
|
^!+#v:: ; Capslock+v to open a browser
|
||||||
|
{
|
||||||
|
vscodeID := WinExist("ahk_exe code.exe")
|
||||||
|
|
||||||
|
if (vscodeID) {
|
||||||
|
WinActivate(vscodeID)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
; Open a terminal over the currently focused VS Code window.
|
; Open a terminal over the currently focused VS Code window.
|
||||||
; If there is an open Windows Terminal, use that, otherwise create a new one.
|
; If there is an open Windows Terminal, use that, otherwise create a new one.
|
||||||
@ -50,6 +72,16 @@ prevWindow := 0
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
; Focus Discord if there is one open.
|
||||||
|
^!+#d:: ; Capslock+d to open a browser
|
||||||
|
{
|
||||||
|
discordID := WinExist("Discord")
|
||||||
|
|
||||||
|
if (discordID) {
|
||||||
|
WinActivate(discordID)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
; Arrange windows into my preferred location, based on what monitors are connected.
|
; Arrange windows into my preferred location, based on what monitors are connected.
|
||||||
monitorConfigurations := Map(
|
monitorConfigurations := Map(
|
||||||
|
Reference in New Issue
Block a user