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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
# Shellcaster settings
# --------------------
# Specifies where podcast episodes that are downloaded will be stored.
# Defaults:
# $XDG_DATA_HOME/shellcaster/ or $HOME/.local/share/shellcaster/ on Linux
# $HOME/Library/Application Support/shellcaster/ on Mac
# C:\Users\<User>\AppData\Local\shellcaster\ on Windows
#download_path = "~/.local/share/shellcaster/"
# Command to use to play episodes. Use "%s" to indicate where file/URL
# will be entered to the command.
# Default: vlc %s
#play_command = "vlc %s"
# Configures what happens when new episodes are found as podcasts are
# synced:
# - "always" will automatically download all new episodes;
# - "ask-selected" will open a popup window to let you select which
# episodes to download, with all of them selected by default;
# - "ask-unselected" will open a popup window to let you select which
# episodes to download, with NONE of them selected by default;
# - "never" will never automatically download new episodes.
# Default: "ask-unselected"
#download_new_episodes = "ask-unselected"
# Maximum number of files to download simultaneously. Setting this too
# high could result in network requests being denied. A good general
# guide would be to set this to the number of processor cores on your
# computer.
# Default: 3
#simultaneous_downloads = 3
# Maximum number of times to retry connecting to a URL to sync a
# podcast or download an episode.
# Default: 3
#max_retries = 3
[]
# Keybindings must be an array of one or more strings.
# If you want to distinguish between a regular alphanumeric key
# and Shift+key, you can use the capital letter that you would normally
# type when pressing Shift+key (e.g., Shift+"r" will give you "R").
# Other special characters and their config string:
# Arrow keys: "Left", "Right", "Up", "Down"
# Ctrl+key: "C-key" (e.g., "C-r" means Ctrl+"r")
# Shift+key: "S-key" (e.g., "S-Del" means Shift+Delete)
# Insert ("Ins"), Delete ("Del"), Home ("Home"), End ("End"),
# Page up ("PgUp"), Page down ("PgDn"), Tab ("Tab")
# Enter ("Enter"), Escape ("Esc") -- be aware that on some terminals the
# Escape key waits for further input before passing it along to
# shellcaster, so you might notice a delay with this key
# Don't try to use backslash, or you're gonna have a bad time
= [ "Left", "h" ]
= [ "Right", "l" ]
= [ "Up", "k" ]
= [ "Down", "j" ]
= [ "a" ]
= [ "s" ]
= [ "S" ]
= [ "Enter", "p" ]
= [ "m" ]
= [ "M" ]
= [ "d" ]
= [ "D" ]
= [ "x" ]
= [ "X" ]
= [ "r" ]
= [ "R" ]
= [ "?" ]
= [ "q" ]