-
Notifications
You must be signed in to change notification settings - Fork 4
/
config.json.sample
37 lines (37 loc) · 926 Bytes
/
config.json.sample
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
{
"fontPrimary": "Roboto:Medium",
"fontSecondary": "Roboto:Light",
"height": 32,
"spotify": { // or omit this block, only needed for song progress in mpris widget with spotify
"clientId": "<obtain from spotify>",
"clientSecret": "<obtain from spotify>",
"redirectURL": "http://127.0.0.1:3007/spotify/auth"
},
"panels": [
{
"screen": "First",
"dock": "Bottom",
"widgets": [
"dwinbar.widgets.clock.ClockWidget",
"dwinbar.widgets.volume.VolumeWidget",
"dwinbar.widgets.mediaplayer.MprisMediaPlayerWidget",
"dwinbar.widgets.phone_battery.PhoneBatteryWidget",
{
"type": "dwinbar.widgets.workspace.WorkspaceWidget",
"display": "DisplayPort-0"
}
]
},
{
"screen": "Second",
"dock": "Bottom",
"widgets": [
"dwinbar.widgets.clock.ClockWidget",
{
"type": "dwinbar.widgets.workspace.WorkspaceWidget",
"display": "DisplayPort-1"
}
]
}
]
}