A Hammerspoon Spoon to set your Slack status when on a Zoom call
-
git clone https://github.com/chrisscott/ZoomSlack.git ~/.hammerspoon/Spoons/ZoomSlack.spoon
-
Get a legacy Slack token
-
Edit your
~/.hammerspoon/init.lua
to include and configure this Spoon with your Slack token and any other configuration options. e.g:local zoom = hs.spoons.use( "ZoomSlack", { config = { slackToken = "[YOUR SLACK TOKEN]", statusEmoji = ":zoom:" } } ) if zoom then spoon.ZoomSlack:start() end