-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig_example.toml
More file actions
59 lines (48 loc) · 1.53 KB
/
config_example.toml
File metadata and controls
59 lines (48 loc) · 1.53 KB
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
# sreader config example
# Copy this file to ~/.config/sreader/config.toml and edit it to your liking.
# URL list (REQUIRED)
URLs = [
"https://example.com/rss.xml",
"https://another-example.com/index.xml",
]
#############
### PATHS ###
#############
DBFile = "~/.local/share/sreader/sreader.db"
LogFile = "~/.local/share/sreader/sreader.log"
TmpDir = "~/.local/share/sreader"
##############
### COLORS ###
##############
# These colors are used for the text and background of the entire viewport
FG = "#BFD7EA" # Very light blue
BG = "#000000" # Black
# Title colors for lists
TitleFG = "#BFD7EA" # Very light blue
TitleBG = "#000000" # Black
SelectedTitleFG = "#000000" # Black
SelectedTitleBG = "#306BAC" # Light blue
# Description colors for lists
DescFG = "#BFD7EA" # Very light blue
DescBG = "#000000" # Black
SelectedDescFG = "#000000" # Black
SelectedDescBG = "#306BAC" # Light blue
####################
### KEY BINDINGS ###
####################
UpKey = "j" # Move up
DownKey = "k" # Move down
LeftKey = "h" # Go back to the previous view
RightKey = "l" # Open the selected item
BottomKey = "G" # Go to the end of the list
TopKey = "g" # Go to the start of the list
QuitKey = "q" # Quit the application
SyncKey = "r" # Sync feeds
BrowserKey = "o" # Open the selected entry in Browser
PlayerKey = "v" # Play the selected entry in Player
FilterKey = "/" # Search/filter the current view
#############################
### EXTERNAL APPLICATIONS ###
#############################
Player = "mpv" # Media player
Browser = "firefox" # Web browser