• 0 Posts
  • 10 Comments
Joined 2 years ago
cake
Cake day: July 27th, 2023

help-circle

  • 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.

    [~]$ cat bin/mpcut.sh
    #!/bin/bash
    if [ "$(echo "$1" | cut -b-4)" = "http" ]; then
        /usr/bin/mpc pause
        /usr/bin/mpc insert "$1"
        /usr/bin/mpc toggle
        /usr/bin/notify-send -i gpodder "$1 inserted to next spot in playlist."
    else
        /usr/bin/mpc pause
        /usr/bin/mpc add "Podcasts/$(echo "$1" | cut -d"/" -f6-)"
        /usr/bin/mpc toggle
        /usr/bin/notify-send -i gpodder "$(echo "$1" | cut -d"/" -f7-)" "added to end of playlist."
    fi
    

    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'




  • Callcentric has Canada numbers. For their Pay Per Minute plan, there is a US$3.95 setup fee. Monthly charge of $3 for the number, plus $0.015 per minute incoming voice (outgoing charge varies by location called) and $0.01 per SMS. Probably an additional charge for 911 emergency number access if you tell them you are going to use the number from inside the USA or Canada.

    You can read your text messages on their website and/or have them sent to your email address.

    I got a California number from them when I was living there in 2009 or so, and added the SMS more recently (which added $1 to my previous monthly charge of $2). It has never failed me for SMS verification for banks, etc. I have not tried WhatsApp or Telegram.


  • On my machine, neovim is visibly faster on uxterm over alacritty, another gpu-accelerated terminal emulator, so I’m not going to bother trying ghostty. Also, I don’t have gtk4 on my computer now. I don’t see the need to install it just for a terminal emulator. In addition to xterm, I also have xfce4-terminal (included with the Xfce desktop environment I’ve been using since Gnome 2 went away) for when I want font-fallback support or a drop-down terminal.