I’m looking for recommendations for a dotfile manager - there are so many out there I’ve got a bit of options paralysis!

I’d like a system that can backup all my dotfiles - with version management - and, if I nuked my home directory, could restore them all for me with a simple command.

Thanks in advance for you suggestions!

  • bitsplease@lemmy.ml
    link
    fedilink
    arrow-up
    12
    ·
    1 year ago

    Git and a script file that’s basically just a ton of ln - s commands

    I honestly don’t think I’ve ever found myself wanting more

  • GustavoM@lemmy.world
    link
    fedilink
    English
    arrow-up
    7
    ·
    edit-2
    1 year ago

    cp -r to an external drive. And cp -r back in case something goes wrong.

    I know, it’s boring and no way “modern”. But hey, it works and it does not require internet access!

  • conrad82@lemmy.world
    link
    fedilink
    arrow-up
    7
    ·
    1 year ago

    I used yadm for a while and liked it. It is a git wrapper that makes git’ing your home folder for config files less messy

    https://yadm.io/

    Now I don’t care so much for keeping settings anymore and use mainly vanilla settings, therefore I stopped using it

  • adONis@lemmy.world
    link
    fedilink
    arrow-up
    7
    ·
    1 year ago

    nuking your home directory

    Imho, in that case, you should look int a more proper backup strategy to restore all your files, not just your configs.

    • daddyjones@lemmy.worldOP
      link
      fedilink
      arrow-up
      2
      ·
      1 year ago

      Thanks - yes I do have that, but I also wanted something specific to my dotfiles to make management and restoration a bit easier.

      • adONis@lemmy.world
        link
        fedilink
        arrow-up
        4
        ·
        edit-2
        1 year ago

        I have a vorta backup, running on a regular basis for my home dir which has GBs of data.

        Mounting and restoring files is literally a matter of seconds.

        But if you want something that you can easily take with you, you can go with a symlink/git approach:

        • have a folder “configs”
        • move all your dotfiles thst have NO sensitive data like credentials into that folder
        • symlink them into their proper place
        • use GIT to track them and push them to a git repo

        Once you need them somewhere else, it’s just a git pull away… easy as that.

        What I dislike about existing solutions, is they come with their own binaries, conventions, and stuff, but basically do almost the same… this is the “raw way” that will hold up on any system, and almost all of them have git.

  • Iam@lemmy.dbzer0.com
    link
    fedilink
    arrow-up
    3
    ·
    1 year ago

    Manage your ‘dot’ files??

    Been doing Linux since Caldera OpenLinux 2.2 and I don’t think I have ever bothered back-ups except pinerc and maybe ~/.i3/config

  • aairey@lemmy.world
    link
    fedilink
    arrow-up
    3
    ·
    edit-2
    1 year ago

    dotdrop, because different dotfiles per OS/hist is supported (I am usingfedora, Ubuntu, Debian, macOS but you can configure it as you wish).

  • cow@lemmy.world
    link
    fedilink
    arrow-up
    2
    ·
    1 year ago

    My home directory is a git repo with a .gitignore that contains something like

    
    *
    
    !.config/sway
    
    !.config/sway/*
    
    !.config/sway/**/*