• 21 Posts
  • 2.75K Comments
Joined 2 years ago
cake
Cake day: July 7th, 2023

help-circle

  • just_another_person@lemmy.worldtoLinux@lemmy.mlSSH managers on Linux?
    link
    fedilink
    arrow-up
    9
    arrow-down
    1
    ·
    edit-2
    23 hours ago

    As everyone keeps saying…it’s just not a thing that actual sysadmins or fluent users need. Using ssh configs is essentially the same thing that you’re looking for, but you’re just typing alias hostnames instead of clicking on them. Otherwise absolutely no difference. Not many people are connecting by IP address or anything like that.









  • I think Piper being able to take input and read it from the client is simple enough that most people wouldn’t make an entire GUI just to avoid to do that, so it might be hard to find something like that.

    If you’re specifically talking about reading PDFs aloud, you could do something like: pdftotext file.pdf | piper and it will read the whole thing.

    If you only mean reading a file from a specific selection of text, I’ve never seen something that, and it would have to operate more like a fully fledged screen reader because you’d have content rendered on screen that would have to be then piped to a TTS engine.





  • Install pavucontrol or qasmixer and make sure you flip through all the output toggles to make sure pipewire isn’t keeping it muted because it doesn’t detect something plugged. It’s a known issue with this hardware and codec, and other minisforums products have this same issue with it battling the software v hardware mixer controls.

    I haven’t figured out how exactly to make it automatically switch on plugin of headphones just yet, but I’m sure someone may have a fix out there.





  • just_another_person@lemmy.worldtoSelfhosted@lemmy.worldVersion Dashboard
    link
    fedilink
    English
    arrow-up
    2
    arrow-down
    3
    ·
    4 days ago

    When using semantic versioning of anything, it’s an intention to run that specific version. AKA version pinning or locking. Meaning you DON’T want it automatically updating unless you do it manually.

    You especially don’t want this happening in a k8s cluster if you intend to run replicas with pulls enabled for obvious reasons.

    As for being notified of updates, there are some tools out there for this, but I believe they only check for pulling specific tags, or latest tag. The way container registries work wouldn’t make it obvious what exactly you’d want to update, because there is no concept of tag inheritance. This means if a new tag showed up in a repo, you wouldn’t know if it’s an update to your specific current version of aomething, or just another tag. They don’t work like packages in this sense.