1
0
mirror of https://github.com/alrayyes/dotfiles/ synced 2023-11-14 15:56:30 +00:00

feat(castero): castero updated its config for some reason

This commit is contained in:
Ryan Kes 2020-12-21 07:54:12 +01:00
parent ca53760a0d
commit 89445ad96d

View File

@ -29,13 +29,8 @@ disable_vertical_borders = False
# default: True # default: True
clean_html_descriptions = True clean_html_descriptions = True
# Whether to right-align the current episode time/duration. # The display refresh delay, in ms. Increase to reduce idle CPU usage.
# default: False # default: 30
right_align_time = False
# The display refresh delay, in ms. Lower for better responsiveness but higher
# CPU usage.
# default: 70
refresh_delay = 70 refresh_delay = 70
# The external player to use for media playback. # The external player to use for media playback.
@ -46,6 +41,33 @@ refresh_delay = 70
# default: (blank) # default: (blank)
player = player =
# 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:pass@10.10.1.10: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:pass@10.10.1.10:3128
# example: socks5://user:pass@host:port
# default: (blank)
proxy_https =
[feeds] [feeds]
# Whether to reload/refresh your feeds when the client starts. Depending on how # Whether to reload/refresh your feeds when the client starts. Depending on how
@ -105,6 +127,7 @@ color_foreground_heading = yellow
# default: white # default: white
color_foreground_dividers = white color_foreground_dividers = white
[playback] [playback]
# The distance to move forward when pressing seek keys, in seconds. # The distance to move forward when pressing seek keys, in seconds.
# default: 30 # default: 30
@ -118,6 +141,14 @@ seek_distance_backward = 10
# default: 1.0 # default: 1.0
default_playback_speed = 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] [keys]
# Keybindings for controlling the client. Entries may not be blank, but may # Keybindings for controlling the client. Entries may not be blank, but may
@ -137,18 +168,26 @@ key_exit = q
# default: a # default: a
key_add_feed = a key_add_feed = a
# Delete the selected feed. # Remove the selected feed.
# default: d # default: d
key_delete = d key_remove = d
# Reload/refresh feeds. # Reload/refresh all feeds.
# default: r # default: r
key_reload = r key_reload = r
# Reload/refresh the selected feed.
# default: R
key_reload_selected = R
# Save episode for offline playback. # Save episode for offline playback.
# default: s # default: s
key_save = s key_save = s
# Delete downloaded episodes.
# default: x
key_delete = x
# Navigate up. # Navigate up.
# default: UP # default: UP
key_up = k key_up = k
@ -189,6 +228,9 @@ key_clear = c
# default: n # default: n
key_next = n key_next = n
# Execute a command on the selected episode. See also execute_command.
key_execute = e
# Invert the order of the menu. # Invert the order of the menu.
# default: i # default: i
key_invert = i key_invert = i
@ -233,6 +275,14 @@ key_rate_increase = ]
# default: [ # default: [
key_rate_decrease = [ key_rate_decrease = [
# Increase volume.
# default: =
key_volume_increase = =
# Decrease volume.
# default: -
key_volume_decrease = -
# Show episode URL. # Show episode URL.
# default: u # default: u
key_show_url = u key_show_url = u