• 2 Posts
  • 78 Comments
Joined 1 year ago
cake
Cake day: June 6th, 2023

help-circle

    • Rush Hour: The Lion King

      • Carter and Lee take on a nefarious plot to overthrow the king in the African savannah, ultimately foiling Scar’s plot and ensuring Simba inherits the throne, whilst working undercover in the Hyena underworld.
    • Kung Pow: LotR

      • The Fellowship of the Fist must face off against Lord Sauron, but first Frodo must train under True Master Gandalf to achieve his destiny.
    • Harry: Potter

      • Detective Harry Calahan must infiltrate a secluded military school in the Scottish countryside as the new DADA teacher, in order to take down an organisation known only as “Dumbledore’s Army” led by a single battle-scarred teen known only as The Potter.

    Top-tier recommendations, good sir






  • I used to have lieer’s gmi (read: mbsync with gmail tag syncing) paired with notmuch. It’s good when it works, but it’s annoying to need a service in the background.

    I used to use Gnus, but Gnus is sometimes weirds out if your tag filters are too complex for it



  • I love it, but the configuration is messy. Many packages are out of date, but the Scheme syntax makes it easy to update them and build them on your system.

    Problem is, getting these updates merged with the upstream never happens generally speaking (I have several open patches), so you end up having two working trees in your local Guix repo, and heaven forbid you run guix pull on the wrong branch.





  • Pulseaudio should have hooks

    # cat /etc/pulse/default.pa
    load-module module-switch-on-connect
    load-module module-exec
    load-module module-exec arguments="path/to/your/script.sh %s"    
    

    (where %s resolves on trigger to the name of the sink added)

    Your script.sh should then match the first argument to the name of the sink you want to control, and then run

    # path/to/your/script.sh
    if [ "$1" = "THESINKIWANT" ]; then
      pactl set-sink-volume $1 40%
    fi