wezterm-gui as a real option

This commit is contained in:
Anthony Cicchetti 2024-10-20 22:44:09 -04:00
parent 71ae53bd5e
commit f0bdfb0a05

View file

@ -5,7 +5,8 @@ spoon.SpoonInstall:andUse("WindowHalfsAndThirds")
spoon.SpoonInstall:andUse("Commander")
spoon.SpoonInstall:andUse("ReloadConfiguration")
TERMINAL_NAME = "WezTerm"
-- Keep a running, and preferred terminal as the _last_ value here
TERMINAL_NAMES = { "wezterm-gui", "WezTerm" }
spoon.WindowScreenLeftAndRight:bindHotkeys(spoon.WindowScreenLeftAndRight.defaultHotkeys)
@ -20,11 +21,24 @@ hs.hotkey.bind({"cmd", "alt", "ctrl"}, "SPACE", function ()
end)
hs.hotkey.bind({ "ctrl" }, "t", function()
terminal = nil
for i = 1, #TERMINAL_NAMES do
if hs.application.get(TERMINAL_NAMES[i]) then
terminal = hs.application.get(TERMINAL_NAMES[i])
break
end
end
local currentApp = hs.window.focusedWindow():application()
if (currentApp:name() == TERMINAL_NAME) then
print(currentApp)
if terminal then
if currentApp:name() == terminal:name() then
hs.eventtap.keyStroke({ "ctrl" }, "t", 1000, currentApp)
else
hs.application.launchOrFocus(TERMINAL_NAME)
terminal:activate()
end
else
print(TERMINAL_NAMES[#TERMINAL_NAMES])
hs.application.launchOrFocus(TERMINAL_NAMES[#TERMINAL_NAMES])
end
end)