-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfig.example.toml
40 lines (38 loc) · 1.43 KB
/
config.example.toml
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
#### PLAYER OPTIONS ####
[player]
# By default, the VLC GUI is launched.
# However, instead of the GUI, you can choose to launch VLC in command line mode (cvlc).
# 0: No, 1: Yes
# Launch cvlc alone (will not open a terminal to control cvlc):
cvlc = "0"
# Launch cvlc with a terminal (will open a terminal to control cvlc):
# NOTE: `cvlc` must be set to 1 if you set `cvlc_term` to 1.
cvlc_term = "0"
#### PLAYER NETWORK ####
# By default, the player is launched to "localhost:1234"
# Address:
address = "localhost"
# Port:
port = "1234"
#### COLORS (RGB) ####
[colors]
# General background color of the app:
background_color = [40, 40, 40]
# Login background color:
log_background_color = [40, 40, 40]
# Background color for section headers (e.g., "Continue Listening", "Library", etc.):
header_background_color = [60, 60, 60]
# Line color surrounding the header title:
line_header_color = [180, 180, 180]
# Background color of the book list:
list_background_color = [50, 50, 50]
# Background color for alternate rows of the book list:
list_background_color_alt_row = [60, 60, 60]
# Background color of the selected row of the book list:
list_selected_background_color = [80, 80, 80]
# Text color of the selected row of the book list:
list_selected_foreground_color = [180, 180, 180]
# Text and border color of the search bar:
search_bar_foreground_color = [180, 180, 180]
# Text and border color of the login section:
login_foreground_color = [180, 180, 180]