this post was submitted on 23 Jun 2025
64 points (97.1% liked)
Linux
8038 readers
745 users here now
A community for everything relating to the GNU/Linux operating system
Also check out:
Original icon base courtesy of lewing@isc.tamu.edu and The GIMP
founded 2 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
I am using Music Player Daemon, and I use the following script to turn gPodder into a client. My music is in
~/Music
and I put the podcasts in~/Music/Podcasts
. The script works for both streaming or downloaded podcasts.Audio Player in gPodder preferences is set to this:
/home/christopher/bin/mpcut.sh %F
I have an application shortcut Super-G set to this in xfce4-keyboard-settings:
env GTK_THEME=Adwaita-dark GPODDER_HOME=/home/christopher/.config/gPodder/ GPODDER_DOWNLOAD_DIR=/home/christopher/Music/Podcasts/ /usr/bin/gpodder
or you could use an alias:
alias gpodder='GTK_THEME=Adwaita-dark GPODDER_HOME=/home/christopher/.config/gPodder/ GPODDER_DOWNLOAD_DIR=/home/christopher/Music/Podcasts/ /usr/bin/gpodder --verbose'