-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
395 changed files
with
94,020 additions
and
86,652 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,6 @@ | ||
# castero configuration file | ||
# https://github.com/xgi/castero | ||
|
||
|
||
[client] | ||
# Whether to ask for confirmation before deleting a feed. | ||
# default: False | ||
|
@@ -29,13 +28,8 @@ disable_vertical_borders = False | |
# default: True | ||
clean_html_descriptions = True | ||
|
||
# Whether to right-align the current episode time/duration. | ||
# default: False | ||
right_align_time = False | ||
|
||
# The display refresh delay, in ms. Lower for better responsiveness but higher | ||
# CPU usage. | ||
# default: 70 | ||
# The display refresh delay, in ms. Increase to reduce idle CPU usage. | ||
# default: 30 | ||
refresh_delay = 70 | ||
|
||
# The external player to use for media playback. | ||
|
@@ -44,7 +38,34 @@ refresh_delay = 70 | |
# Available players (in order of precedence): | ||
# mpv, vlc | ||
# default: (blank) | ||
player = | ||
player = mpv | ||
|
||
# The command to run when you press key_execute (default e). All instances of | ||
# the following tokens are replaced with the corresponding episode attributes: | ||
# {file} - the episode enclosure, usually a remote mp3 file | ||
# {title} - the episode name | ||
# {description} - the episode description | ||
# {link} - the link to the episode, which is often a blog post | ||
# {pubdate} - the publish date/time of the episode | ||
# {copyright} - the copyright of the episode | ||
# Most of these attributes have spaces, so you will probably want to enclose | ||
# the token with quotations. | ||
# For example, `firefox "{file}"` would open the file in Firefox. | ||
# The client executes the text you enter as a shell command. Use with caution! | ||
# default: (blank) | ||
execute_command = | ||
|
||
# An HTTP or SOCKS proxy to use for HTTP network requests. | ||
# example: http://user:[email protected]:3128 | ||
# example: socks5://user:pass@host:port | ||
# default: (blank) | ||
proxy_http = | ||
|
||
# An HTTP or SOCKS proxy to use for HTTPS network requests. | ||
# example: http://user:[email protected]:3128 | ||
# example: socks5://user:pass@host:port | ||
# default: (blank) | ||
proxy_https = | ||
|
||
|
||
[feeds] | ||
|
@@ -75,7 +96,7 @@ request_timeout = 3 | |
|
||
# The foreground (text) color of the main interface. | ||
# default: yellow | ||
color_foreground = #bbc5ff | ||
color_foreground = magenta | ||
|
||
# The background color of the main interface. | ||
# default: black | ||
|
@@ -87,23 +108,24 @@ color_foreground_alt = black | |
|
||
# The background color of selected items. | ||
# default: white | ||
color_background_alt = magenta | ||
color_background_alt = cyan | ||
|
||
# The foreground (text) color of marked items. Paired with color_background. | ||
# default: green | ||
color_foreground_dim = cyan | ||
color_foreground_dim = magenta | ||
|
||
# The foreground (text) color of status lines. Paired with color_background. | ||
# default: white | ||
color_foreground_status = #bbc5ff | ||
color_foreground_status = magenta | ||
|
||
# The foreground (text) color of menu headings. Paired with color_background. | ||
# default: yellow | ||
color_foreground_heading = magenta | ||
|
||
# The foreground (text) color of dividers. Paired with color_background. | ||
# default: white | ||
color_foreground_dividers = black | ||
color_foreground_dividers = white | ||
|
||
|
||
[playback] | ||
# The distance to move forward when pressing seek keys, in seconds. | ||
|
@@ -118,6 +140,14 @@ seek_distance_backward = 10 | |
# default: 1.0 | ||
default_playback_speed = 1.0 | ||
|
||
# The default volume. Can be 0-100, inclusive. | ||
# default: 100 | ||
default_volume = 100 | ||
|
||
# The amount to adjust the volume when pressing the volume up/down keys. | ||
# default: 5 | ||
volume_adjust_distance = 5 | ||
|
||
|
||
[keys] | ||
# Keybindings for controlling the client. Entries may not be blank, but may | ||
|
@@ -137,18 +167,26 @@ key_exit = q | |
# default: a | ||
key_add_feed = a | ||
|
||
# Delete the selected feed. | ||
# Remove the selected feed. | ||
# default: d | ||
key_delete = d | ||
key_remove = d | ||
|
||
# Reload/refresh feeds. | ||
# Reload/refresh all feeds. | ||
# default: r | ||
key_reload = r | ||
|
||
# Reload/refresh the selected feed. | ||
# default: R | ||
key_reload_selected = R | ||
|
||
# Save episode for offline playback. | ||
# default: s | ||
key_save = s | ||
|
||
# Delete downloaded episodes. | ||
# default: x | ||
key_delete = x | ||
|
||
# Navigate up. | ||
# default: UP | ||
key_up = k | ||
|
@@ -189,6 +227,9 @@ key_clear = c | |
# default: n | ||
key_next = n | ||
|
||
# Execute a command on the selected episode. See also execute_command. | ||
key_execute = e | ||
|
||
# Invert the order of the menu. | ||
# default: i | ||
key_invert = i | ||
|
@@ -233,6 +274,14 @@ key_rate_increase = ] | |
# default: [ | ||
key_rate_decrease = [ | ||
|
||
# Increase volume. | ||
# default: = | ||
key_volume_increase = = | ||
|
||
# Decrease volume. | ||
# default: - | ||
key_volume_decrease = - | ||
|
||
# Show episode URL. | ||
# default: u | ||
key_show_url = u |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.