/ZoomSlack

A Hammerspoon Spoon to set your Slack status when on a Zoom call

Primary LanguageHTMLMIT LicenseMIT

ZoomSlack

A Hammerspoon Spoon to set your Slack status when on a Zoom call

Prerequisites

Installation

  1. git clone https://github.com/chrisscott/ZoomSlack.git ~/.hammerspoon/Spoons/ZoomSlack.spoon

  2. Get a legacy Slack token

  3. 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