• 0 Posts
  • 39 Comments
Joined 1 year ago
cake
Cake day: June 29th, 2023

help-circle
  • Any software KVM like Synergy.

    I work from home and Synergy has been a core part of my setup for many years.

    It lets me use my personal PC and work laptop from one KB+M seamlessly.

    I’ve tried so many different things. Input Leap, installed on Aurora by default, is supposed to work with Wayland, but doesn’t work out of the box.

    I’m resigned to using Windows during the week so I can use Synergy and switching back to Linux over the weekend because I prefer it now.



  • I started on Bazzite as my first real Linux desktop. After a while I rebased to Aurora (Bluefin but KDE instead of Gnome) and I really liked it. I ended up rebasing back to Bazzite for a while.

    My only issue is around a very specific piece of software that has issues with Wayland. That’s why all the rebasing.

    Being able to rebase so easily like that is so freaking cool.










  • A lot of the modern tech is really good, though.

    Cars are way more reliable than they were. They get way better gas mileage. They have a shitload more power (this is actually a con due to how everyone else drives these days). They’re way safer in both accidents and just general driving with traction control and lane departure warnings.

    So it’s a real mixed bag. But I’d rather have the cars of today.


  • Auto detection for MQTT devices is a bit tricky. I struggled with that myself when I was trying to incorporate data from a web scraper I wrote. This config file here shows what I ended up with to create auto detecting sensors in HA https://github.com/chunkystyles/reservationsScraper/blob/main/mqttConfig.json

    Each one of the devices gets registered at start up of the app.

    If I were doing this all over again, I probably wouldn’t use auto detect sensors. I’d manually configure them. Here’s some examples of that kind of configuration I used for some HVAC remote devices I built:

    mqtt:
      sensor:
        - name: "makerfabs_remote_1"
          state_topic: "makerfabs/hvacremote/1/status_out"
          force_update: true
          expire_after: 125
        - name: "makerfabs_remote_2"
          state_topic: "makerfabs/hvacremote/2/status_out"
          force_update: true
          expire_after: 125
        - name: "makerfabs_remote_3"
          state_topic: "makerfabs/hvacremote/3/status_out"
          force_update: true
          expire_after: 125
        - name: "makerfabs_remote_4"
          state_topic: "makerfabs/hvacremote/4/status_out"
          force_update: true
          expire_after: 125
    

    For these to work, you just put them in your “configuration.yaml” file in HA.







  • Setting up is stupid easy. What makes immutable distros potentially difficult is installing software. Anything packaged as a flatpak is stupid easy. Beyond that it can get complicated. But it’s not bad in general.

    Having just switched to Linux with Bazzite two weeks ago, my biggest issues have come from Wayland support. And that’s really just because I have a specific piece of software I need that doesn’t support Wayland. And that’s a bit of an edge case and the result is more annoyance than show stopper.