• 1 Post
  • 164 Comments
Joined 1 year ago
cake
Cake day: June 6th, 2023

help-circle



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





  • Keyboard Phones

    Is there any keyboard phone out there with some decent specs?

    The F(x) Tec Pro1x looks really promising, but I’ve seen many youtube video reviews relating to its various hardware issues (intermittent connectivity, speakers clipping, others I cant remember). Can anyone with one tell me if it’s worth it? I just want something I can type my idle thoughts into, sync my org-mode notebooks, and type on the web.

    The Astro Slide 5G looks really good, but I want a phone I hold and type instead of a keyboard I need to place down. Also the price is astronomical.

    Ideally I would just shove more RAM and CPUs on my Nokia N900 and be happy as a clam, but that world doesn’t exist.

    Also: Anyone know of any phones with a good hardware keyboard case add on? A shell with a keyboard that hooks in via bluetooth or USB?

    Regular Phones

    On the non-keyboard front, I’m looking for a device that has a decent Lineage community around it, but also that the hardware is open enough to be mainlined by PostMarketOS.

    I’m currently putting together a table of the various PmOS phones, their hardware specs, their PmOS compatibility, and the Lineage images they support.

    But in the meantime, if I can get some recommendations here too. Nothing fancy: over 4 cores, 2GB ram, and can slide easily into a pocket.

    I like the idea of the SHIFT6mq, due to its upgradability, but want to hear from any happy users before I do




  • 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