Compare commits

..

1 Commits

Author SHA1 Message Date
f60696abd9 Remove vs-code from monitor configuration 2024-09-16 14:35:21 -07:00

View File

@ -19,28 +19,6 @@ 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.
@ -72,16 +50,6 @@ 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(
@ -90,7 +58,6 @@ monitorConfigurations := Map(
"Workrave", [0, 2056, 94, 56], "Workrave", [0, 2056, 94, 56],
"Discord", [-7, 0, 900, 750], "Discord", [-7, 0, 900, 750],
"Signal", [-7, 742, 900, 750], "Signal", [-7, 742, 900, 750],
"Visual Studio Code", [886, 0, 2954, 2110],
"ahk_exe WindowsTerminal.exe", [886, 0, 2954, 2110], "ahk_exe WindowsTerminal.exe", [886, 0, 2954, 2110],
"Mozilla Firefox", [881, 0, 2963, 2117], "Mozilla Firefox", [881, 0, 2963, 2117],
"TickTick", [-7, 1484, 900, 635] "TickTick", [-7, 1484, 900, 635]
@ -100,7 +67,6 @@ monitorConfigurations := Map(
"Workrave", [0, 1498, 94, 56], "Workrave", [0, 1498, 94, 56],
"Discord", [-7, 0, 900, 750], "Discord", [-7, 0, 900, 750],
"Signal", [-7, 742, 900, 750], "Signal", [-7, 742, 900, 750],
"Visual Studio Code", [472, 0, 2085, 1550],
"ahk_exe WindowsTerminal.exe", [472, 0, 2085, 1550], "ahk_exe WindowsTerminal.exe", [472, 0, 2085, 1550],
"Mozilla Firefox", [467, 0, 2099, 1557], "Mozilla Firefox", [467, 0, 2099, 1557],
"TickTick", [0, 731, 942, 821], "TickTick", [0, 731, 942, 821],