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("Commander")
spoon.SpoonInstall:andUse("ReloadConfiguration") 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) spoon.WindowScreenLeftAndRight:bindHotkeys(spoon.WindowScreenLeftAndRight.defaultHotkeys)
@ -15,23 +16,36 @@ spoon.ReloadConfiguration:start()
pcall(require, "initlocal") pcall(require, "initlocal")
hs.hotkey.bind({"cmd", "alt", "ctrl"}, "SPACE", function () hs.hotkey.bind({ "cmd", "alt", "ctrl" }, "SPACE", function()
spoon.Commander.show() spoon.Commander.show()
end) end)
hs.hotkey.bind({"ctrl"}, "t", function () hs.hotkey.bind({ "ctrl" }, "t", function()
local currentApp = hs.window.focusedWindow():application() terminal = nil
if (currentApp:name() == TERMINAL_NAME) then for i = 1, #TERMINAL_NAMES do
hs.eventtap.keyStroke({"ctrl"}, "t", 1000, currentApp) if hs.application.get(TERMINAL_NAMES[i]) then
else terminal = hs.application.get(TERMINAL_NAMES[i])
hs.application.launchOrFocus(TERMINAL_NAME) break
end end
end
local currentApp = hs.window.focusedWindow():application()
print(currentApp)
if terminal then
if currentApp:name() == terminal:name() then
hs.eventtap.keyStroke({ "ctrl" }, "t", 1000, currentApp)
else
terminal:activate()
end
else
print(TERMINAL_NAMES[#TERMINAL_NAMES])
hs.application.launchOrFocus(TERMINAL_NAMES[#TERMINAL_NAMES])
end
end) end)
hs.hotkey.bind({"cmd", "alt"}, ",", function () hs.hotkey.bind({ "cmd", "alt" }, ",", function()
hs.application.launchOrFocus("System Preferences") hs.application.launchOrFocus("System Preferences")
end) end)
hs.hotkey.bind({"cmd", "shift"}, "l", function () hs.hotkey.bind({ "cmd", "shift" }, "l", function()
hs.application.launchOrFocus("Launchpad") hs.application.launchOrFocus("Launchpad")
end) end)