-
Notifications
You must be signed in to change notification settings - Fork 247
/
items.json
71 lines (71 loc) · 1.56 KB
/
items.json
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
[
/* Do Not Disturb */
// {
// "type": "dnd",
// "align": "left",
// "width": 38
// },
{
"type": "weather",
"refreshInterval": 600, // in seconds; is only updated every 10 min anyway
"units": "imperial", // metric or imperial
"icon_type": "images", // text or images
"api_key": "YOUR KEY HERE", // https://home.openweathermap.org/api_keys
"width": 60,
"bordered": false,
"align": "left"
},
{
"type": "brightnessDown",
"width": 60,
"bordered": true,
"align": "left"
},
{
"type": "brightnessUp",
"width": 60,
"bordered": true,
"align": "left"
},
{ /* DISPLAY RANDOM QUOTES */
"type": "shellScriptTitledButton",
"width": 588,
"refreshInterval": 9, // in seconds
"source": {
// "inline": "echo \"YO\""
"filePath": "~/Library/Application Support/MTMR/randomQuotes.sh"
},
"align": "left",
"bordered": false
},
// { /* DISPLAY SINGLE QUOTE */
// "type": "shellScriptTitledButton",
// "width": 510,
// "source": {
// // \\e[33m - sets the following text color to yellow
// // \\e[1m - sets the following text to bold
// // \\e[0m - resets the formatting to defaults for all following text
// "inline": "printf \"\\e[33m\\e[1mAction is the foundational key to all success.\n\\e[0m~ Picasso\""
// },
// "bordered": false,
// "align": "center"
// },
{
"type": "volumeDown",
"bordered": true,
"align": "right",
"width": 60
},
{
"type": "volumeUp",
"bordered": true,
"align": "right",
"width": 60
},
{
"type": "sleep",
"width": 60,
"align": "right",
"bordered": true
}
]