-
Notifications
You must be signed in to change notification settings - Fork 0
/
layout.json
71 lines (71 loc) · 3.61 KB
/
layout.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
{
"info": {"version": 1, "license": "GPL-2.1-or-later", "author": "Cyril Hrubis <[email protected]>"},
"layout": {
"rows": 5,
"align": "fill",
"rfill": "0, 0, 0, 0, 1",
"widgets": [
{"cols": 2, "border": "none", "align": "fill",
"widgets": [
{"type": "pixmap", "w": "3asc 6pad", "h": "3asc 6pad", "uid": "cover_art", "on_event": "pixmap_event"},
{"rows": 3, "halign": "fill", "border": "none", "rpad": "4 * 0",
"widgets": [
{"type": "label", "width": 18, "text": "Artist", "uid": "artist", "tattr": "bold", "halign": "fill"},
{"type": "label", "width": 18, "text": "Album", "uid": "album", "halign": "fill"},
{"type": "label", "width": 18, "text": "Track", "uid": "track", "halign": "fill"}
]
}
]
},
{"type": "pbar","halign": "fill", "unit": "seconds", "inverse": true, "uid": "playback", "on_event": "seek_on_event"},
{"cols": 3, "rows": 3, "align": "fill", "cfill": "0, 0, 1", "cpad": "0, 1, 1, 0", "cpadf": "0, 0, 0, 0", "rpad": "0, 0, 0, 0",
"widgets": [
{"type": "stock", "stock": "software", "min_size": "1asc 4px", "align": "fill"},
{"type": "stock", "stock": "arrow_down", "min_size": "1pad"},
{"type": "stock", "stock": "hardware", "min_size": "1asc 4px", "align": "fill"},
{"type": "stock", "stock": "speaker_max", "min_size": "1asc 4px", "uid": "softvol_icon", "align": "fill"},
{},
{"type": "stock", "stock": "speaker_max", "min_size": "1asc 4px", "align": "fill", "uid": "speaker_icon", "on_event": "speaker_icon_ev"},
{"type": "slider", "min": 0, "max": 30, "halign": "fill", "on_event": "set_softvol"},
{},
{"type": "slider", "min": 0, "max": 30, "on_event": "audio_volume_set", "uid": "volume", "halign": "fill"}
]
},
{"type": "hbox", "border": "none",
"widgets": [
{"type": "hbox",
"widgets": [
{"type": "button", "label": "Prev", "btype": "first", "halign": "fill", "on_event": "button_prev_event"},
{"type": "button", "btype": "play", "halign": "fill", "text_align": "left", "on_event": "button_play_event"},
{"type": "button", "btype": "pause", "halign": "fill", "on_event": "button_pause_event"},
{"type": "button", "label": "Next", "btype": "last", "halign": "fill", "on_event": "button_next_event"}
],
"border": "none", "halign": "fill", "uniform": true
},
{"type": "stock_switch", "on_stock": "repeat_on", "off_stock": "repeat_off", "align": "fill", "on_event": "playlist_repeat"},
{"type": "stock_switch", "on_stock": "shuffle_on", "off_stock": "shuffle_off", "align": "fill", "on_event": "playlist_shuffle"}
],
"halign": "fill", "cell-fill": "6, 2*1"
},
{"rows": 2, "border": "none", "rfill": "1, 0", "align": "fill",
"widgets": [
{"align": "fill", "type": "table", "min_rows": 5, "col_ops": "playlist_ops", "on_event": "playlist_event", "uid": "playlist",
"header": [
{"label": "Playlist", "min_size": 20, "id": "name", "fill": 1}
]
},
{"type": "hbox", "border": "none", "halign": "fill", "uniform": true,
"widgets": [
{"type": "button", "btype": "up", "halign": "fill", "on_event": "button_playlist_move_up"},
{"type": "button", "btype": "down", "halign": "fill", "on_event": "button_playlist_move_down"},
{"type": "button", "btype": "add", "halign": "fill", "on_event": "button_playlist_add"},
{"type": "button", "btype": "rem", "halign": "fill", "on_event": "button_playlist_rem"},
{"type": "button", "btype": "clear", "halign": "fill", "on_event": "button_playlist_clear"},
{"type": "button", "btype": "settings", "halign": "fill"}
]
}
]
}
]
}
}