2025-03-20 20:47:18 +01:00

12 lines
334 B
Lua

hs.hotkey.bind({ "cmd" }, "\\", function()
hs.application.launchOrFocus("Terminal")
hs.timer.doAfter(0.1, function()
hs.osascript.applescript([[
tell application "Terminal"
do script "tmux" in front window
do script "tmux-td" in front window
end tell
]])
end)
end)