State | Slack Status Emoji | Slack Presense | Busy Light |
---|---|---|---|
Active | 🟢 | 🟢 | |
In a Meeting | red-dot | 🟢 | 🔴 |
On Call | red-dot | 🟢 | 🔴 |
Red | 🟢 | 🔴 | |
Busy | red-dot | ⚪️ | 🔴 |
BRB | yellow-dot | ⚪️ | 🟡 |
Lunch | yellow-dot | ⚪️ | 🟡 |
Family | yellow-dot | ⚪️ | 🟡 |
AFK | afk | ⚪️ | ⚪️ |
Offline | ⚪️ | ⚪️ |
Last active
December 30, 2020 23:40
-
-
Save davidsword/54507b9ab301e770e82fb45eb239331f to your computer and use it in GitHub Desktop.
My personal list of statuses for Slack that I use in a custom Alfred Workflow to change my Slack presense and status as well as send a ping to HomeAssistant to change a physical busy light RGB LED for my office so my family knows my current state/focus.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"title" : "Active", | |
"presence" : "auto", | |
"emoji" : "", | |
"text" : "", | |
"busy-light": "available" | |
}, | |
{ | |
"title" : "BRB", | |
"presence" : "away", | |
"emoji" : ":yellow-dot:", | |
"text" : "brb", | |
"busy-light": "away" | |
}, | |
{ | |
"title" : "Lunch", | |
"presence" : "away", | |
"emoji" : ":yellow-dot:", | |
"text" : "brb, lunch", | |
"busy-light": "away" | |
}, | |
{ | |
"title" : "Family", | |
"presence" : "away", | |
"emoji" : ":yellow-dot:", | |
"text" : "brb, family duties", | |
"busy-light": "away" | |
}, | |
{ | |
"title" : "In a Meeting", | |
"presence" : "auto", | |
"emoji" : ":red-dot:", | |
"text" : "currently in a meeting", | |
"busy-light": "busy" | |
}, | |
{ | |
"title" : "On Call", | |
"presence" : "auto", | |
"emoji" : ":red-dot:", | |
"text" : "oncall", | |
"busy-light": "busy" | |
}, | |
{ | |
"title" : "Red", | |
"presence" : "auto", | |
"emoji" : "", | |
"text" : "", | |
"busy-light": "busy" | |
}, | |
{ | |
"title" : "Busy", | |
"presence" : "away", | |
"emoji" : ":red-dot:", | |
"text" : "focused work", | |
"busy-light": "busy" | |
}, | |
{ | |
"title" : "AFK", | |
"presence" : "away", | |
"emoji" : ":afk:", | |
"text" : "", | |
"busy-light": "offline" | |
}, | |
{ | |
"title" : "Offline", | |
"presence" : "away", | |
"emoji" : "", | |
"text" : "", | |
"busy-light": "offline" | |
} | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment