Avatar by eveoart. Artwork - Artist

  • 2 Posts
  • 34 Comments
Joined 2 years ago
cake
Cake day: June 9th, 2023

help-circle

  • on most of my systems I get tired of constantly lsing after a cd so I combine them:

    cd(){
        cd $1 && ls
    }
    

    (excuse if this doesn’t work, I am writing this from memory)

    I also wrote a function to access docker commands quicker on my Truenas system. If passed nothing, it enters the docker jailmaker system, else it passes the command to docker running inside the system.

    docker () {
            if [[ "$1" == "" ]]; then
                    jlmkr shell docker
                    return
            else
                    sudo systemd-run --pipe --machine docker docker "$@"
                    return
            fi
    }
    

    I have a few similar shortcuts for programs inside jailmaker and long directories that I got sick of typing out.


  • Media watch status no longer persists on media rename. When you move or rename your media files, previously Jellyfin remembered the watch status based on external IDs alone; now it uses an actual reference to the database entry. This is a transitional change and we are working on a better way to handle that in a future version.

    I hope they do figure out a solution for that soon… Until that’s fixed I’m going to stay on 10.10.7 for a while.













  • I use Bitwarden (as far as I know these are basically the same) and have had issues with the app too, from long delays before it autofills, to the popup jumping around the screen or vanishing after 1ms, to just never showing up on some screens. I would recommend trying some of the other autofill options they provide in settings to see if they work better for you. I have had much more luck with “inline autofill” than the accessibility-based autofill, but currently keep them all enabled and the experience is much smoother than it was a year ago.




  • I have all my apps running in Docker under Jailmaker and I don’t intend on moving to TrueNAS apps unless I am forced to. Currently I could move this entire setup to any machine I want, set up my jail mount points, launch up Dockge and I’d be up and running (with the same static IP at that!). If I moved to TrueNAS apps I think the transition and handling of mount points would probably be painful. If they remove jailmaker support in 25.xx like I’ve heard I’ll look into Incus or other solutions before using their apps.