From f0bdfb0a05c969727ab461e7315c689fbfdad8f6 Mon Sep 17 00:00:00 2001 From: Anthony Cicchetti Date: Sun, 20 Oct 2024 22:44:09 -0400 Subject: [PATCH] wezterm-gui as a real option --- hammerspoon/init.lua | 42 ++++++++++++++++++++++++++++-------------- 1 file changed, 28 insertions(+), 14 deletions(-) diff --git a/hammerspoon/init.lua b/hammerspoon/init.lua index d43aec7..6414a06 100644 --- a/hammerspoon/init.lua +++ b/hammerspoon/init.lua @@ -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) @@ -15,23 +16,36 @@ spoon.ReloadConfiguration:start() pcall(require, "initlocal") -hs.hotkey.bind({"cmd", "alt", "ctrl"}, "SPACE", function () - spoon.Commander.show() +hs.hotkey.bind({ "cmd", "alt", "ctrl" }, "SPACE", function() + spoon.Commander.show() end) -hs.hotkey.bind({"ctrl"}, "t", function () - local currentApp = hs.window.focusedWindow():application() - if (currentApp:name() == TERMINAL_NAME) then - hs.eventtap.keyStroke({"ctrl"}, "t", 1000, currentApp) - else - hs.application.launchOrFocus(TERMINAL_NAME) - 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() + 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) -hs.hotkey.bind({"cmd", "alt"}, ",", function () - hs.application.launchOrFocus("System Preferences") +hs.hotkey.bind({ "cmd", "alt" }, ",", function() + hs.application.launchOrFocus("System Preferences") end) -hs.hotkey.bind({"cmd", "shift"}, "l", function () - hs.application.launchOrFocus("Launchpad") +hs.hotkey.bind({ "cmd", "shift" }, "l", function() + hs.application.launchOrFocus("Launchpad") end)