Skip to content

Instantly share code, notes, and snippets.

View deafmute1's full-sized avatar

Violet deafmute1

View GitHub Profile
@deafmute1
deafmute1 / alfred_to_wezterm.applescript
Last active February 20, 2026 01:00 — forked from philocalyst/alfred_to_wezterm.applescript
Alfred Wezterm Applescript (For terminal feature) - Activate spawned tab/pane
on alfred_script(query)
try
-- Check if WezTerm is running
set weztermRunning to false
tell application "System Events"
if (name of processes) contains "wezterm-gui" then
set weztermRunning to true
end if
end tell