-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathconfig.yaml
55 lines (45 loc) · 1.74 KB
/
config.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
---
# Obtain a token using the instructions found here:
# https://api.slack.com/custom-integrations/legacy-tokens
token:
# Wireless SSID for your work location. Used to detect whether working
# remotely. Any value other than the following is considered remote to work.
work_ssid: vmware
# List of iCal calendar names that represent work events. This is used to
# determine the "In Meeting" status.
work_calendars:
- Work
# List of iCal calendar names that represent vacation events. This is used to
# determine the "Vacationing" status.
vacation_calendars:
- Vacation
# Whether or not to include meeting titles in the status text. This affects
# the "In a Meeting" and "Vacationing" statuses.
meeting_title: true
# This list of dictionaries can be configured with various remote work
# locations. For example, if you're working from Starbucks, you could
# automatically set the status text and emoji to something Starbucks-ish.
# Keep in mind, that the emoji given must be part of the emoji set of your
# Slack team.
remote_locations:
- ssid: Home
location: Home
status_text: Working from Home
status_emoji: ":house_with_garden:"
# NOTE: Your Slack team needs to have an custom emoji for Starbucks
- ssid: Google Starbucks
location: Starbucks
status_text: Working from Starbucks
status_emoji: ":starbucks:"
# NOTE: Your Slack team needs to have an custom emoji for Peets
- ssid: PEETS
location: Peet's Coffee & Tea
status_text: Working from Peet's Coffee & Tea
status_emoji: ":peets:"
# NOTE: Your Slack team needs to have an custom emoji for Philz
- ssid: Philz Coffee
location: Philz Coffee
status_text: Working from Philz Coffee
status_emoji: ":philz:"
# Whether or not debug mode is on.
debug: false