Skip to content

Instantly share code, notes, and snippets.

@knu
Last active March 11, 2022 14:31
Show Gist options
  • Save knu/e85c0f6095fd64e8dd0f0229ecaa3ab2 to your computer and use it in GitHub Desktop.
Save knu/e85c0f6095fd64e8dd0f0229ecaa3ab2 to your computer and use it in GitHub Desktop.
Add a "Kill" menu bar item using Hammerspoon
do
killMenu = hs.menubar.new()
local killer = function (appName)
return function ()
hs.execute("killall " .. appName)
end
end
killMenu:setTitle("☠️")
killMenu:setMenu{
{ title = "Rambox", fn = killer("Rambox") },
{ title = "ATOK", fn = killer("ATOK30") }
}
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment