This project is no longer maintained. I no longer have the time, nor the motivation, to maintain it. It may still work for you, but I make no guarantees. I may come back to it at some point in the future, but no guarantees on that either.
Shellcaster is a terminal-based podcast manager, built in Rust. It provides a terminal UI (i.e., an ncurses-like interface) to allow users to subscribe to podcast feeds, and sync feeds to check for new episodes. Episodes may be downloaded locally, played with an external media player, and marked as played/unplayed. Keybindings and other options are configurable via a config file.
There are packages available for shellcaster in the Arch User Repository (AUR). Use makepkg -si
(see further details) or your favourite AUR helper program to install one of the following packages:
Currently the only option is to build from source.
First, ensure you have installed the necessary dependencies:
Notes:
libsqlite3-dev
, you are looking for the development headers for SQLite, which may be separate from the runtime package (e.g., with a -dev
suffix).libssl-dev
, the development headers for OpenSSL (not needed on MacOS).pkg-config
and libsqlite3-dev
are not necessary.Next, there are two options for compiling the program:
# for MacOS or Linux
sudo cargo install shellcaster --no-track --root "/usr/local" # add or remove any features with --features
# or for Linux, without needing root permissions
cargo install shellcaster --no-track --root "$HOME/.local"
git clone https://github.com/jeff-hughes/shellcaster.git
cd shellcaster
cargo build --release # add or remove any features with --features
# for MacOS or Linux
sudo cp target/release/shellcaster /usr/local/bin/
# or for Linux, no root permissions
cp target/release/shellcaster ~/.local/bin
See below for the list of available features when compiling.
Shellcaster is not currently supported on Windows, although some work has been done to try to get it working. Unicode support is weak, however, and there are issues when resizing the screen. You might have better luck using the new Windows Terminal, but this has not been tested. If you are a Windows user and want to help work out the bugs, pull requests are more than welcome!
By default, only the native_certs
feature is enabled. Here is the full list of features:
sqlite_bundled
: When disabled, Rust will try to link shellcaster with SQLite header files already present on your system. If enabled, Rust will instead build SQLite from source and bundle the program with shellcaster. Bundling results in a larger application size, but may be suitable if you wish to use a different version of SQLite than the one on your system, or if you are on a system where installing SQLite is more difficult.
native_tls
: By default, shellcaster uses the rustls crate to enable TLS support (i.e., URLs with https). This may cause issues with some podcast feeds that use earlier versions of TLS (below TLS v1.2). If you find that some feeds are unable to update, you can try enabling the native_tls
feature, which will instead use the native-tls crate -- which uses OpenSSL on Linux, Secure Transport on MacOS, and SChannel on Windows.
native_certs
: Shellcaster will use the trusted certificate roots from the trust store for your OS in order to validate TLS certificates. Turning this feature off will instead use a bundled copy of the Mozilla Root program, which will only be updated when you recompile shellcaster. Thus, leaving this feature enabled is recommended.
To specify different features when compiling, here is the format:
cargo install --no-track --no-default-features --features "<feature1>,<feature2>" --root "$HOME/.local"
The format is the same when using cargo build
instead:
cargo build --release --no-default-features --features "<feature1>,<feature2>"
cp target/release/shellcaster ~/.local/bin/
Easy peasy! In your terminal, run:
shellcaster
Note that if you installed shellcaster to a different location, ensure that this location has been added to your $PATH
:
export PATH="/path/to/add:$PATH"
Shellcaster supports importing OPML files from other podcast managers. If you can export to an OPML file from another podcast manager, you can import this file with:
shellcaster import -f /path/to/OPML/file.opml
If the -r
flag is added to this command, it will overwrite any existing podcasts that are currently stored in shellcaster. You can also pipe in data to shellcaster import
from stdin by not specifying the -f <file>
.
You can export an OPML file from shellcaster with the following command:
shellcaster export -f /path/to/output/file.opml
You can also export to stdout by not specifying the -f <file>
; for example, this command is equivalent:
shellcaster export > /path/to/output/file.opml
If you want to change configuration settings, the sample config.toml
file can be copied from here. Download it, edit it to your fancy, and place it in the following location:
# on Linux
mkdir -p ~/.config/shellcaster
cp config.toml ~/.config/shellcaster/
# on MacOS
mkdir -p ~/Library/Preferences/shellcaster
cp config.toml ~/Library/Preferences/shellcaster/
Or you can put config.toml
in a place of your choosing, and specify the location at runtime:
shellcaster -c /path/to/config.toml
The sample file above provides comments that should walk you through all the available options. If any field does not appear in the config file, it will be filled in with the default value specified in those comments. The defaults are also listed below, for convenience.
download_path:
play_command:
download_new_episodes:
simultaneous_downloads:
max_retries:
Key | Action |
---|---|
? | Open help window |
Arrow keys / h,j,k,l | Navigate menus |
Shift+K | Up 1/4 page |
Shift+J | Down 1/4 page |
PgUp | Page up |
PgDn | Page down |
a | Add new feed |
q | Quit program |
s | Synchronize selected feed |
Shift+S | Synchronize all feeds |
Enter / p | Play selected episode |
m | Mark selected episode as played/unplayed |
Shift+M | Mark all episodes as played/unplayed |
d | Download selected episode |
Shift+D | Download all episodes |
x | Delete downloaded file |
Shift+X | Delete all downloaded files |
r | Remove selected feed/episode from list |
Shift+R | Remove all feeds/episodes from list |
1 | Toggle played/unplayed filter |
2 | Toggle downloaded/undownloaded filter |
Note: Actions can be mapped to more than one key (e.g., "Enter" and "p" both play an episode), but a single key may not do more than one action (e.g., you can't set "d" to both download and delete episodes).
You can set the colors in the app with either built-in terminal colors or (provided your terminal supports it) customizable colors as well. See the "colors" section in the config.toml for details about how to specify these colors!
Some users may wish to sync their podcasts automatically on a regular basis, e.g., every morning. The shellcaster sync
subcommand can be used to do this without opening up the UI, and does a full sync of all podcasts in the database. This could be used to set up a cron job or systemd timer, for example. Please refer to the relevant documentation for these systems for setting it up on the schedule of your choice.
Contributions from others are welcome! If you wish to contribute, feel free to clone the repo and submit pull requests. Please ensure you are on the develop
branch when making your edits, as this is where the continued development of the app is taking place. Pull requests will only be merged to the develop
branch, so you can help to avoid merge conflicts by doing your work on that branch in the first place.
Thanks to these fine folks who have made contributions: a-kenji, dougli1sqrd, dwvisser, thunderbiscuit
I was trying to come up with a play on the word "podcast", and I liked the use of the word "shell" for several reasons. "Shell" is a synonym for the word "pod". The terminal is also referred to as a shell (and shellcaster is a terminal-based program). In addition, the program is built on Rust, whose mascot is Ferris the crab. Finally, I just personally enjoy that "shellcaster" sounds a lot like "spellcaster", so you can feel like a wizard when you use the program...