Confy

The config manager you didn't know you needed

Confy's main selling point is convenience by attempting to provide an alternative to the usual messy way of dealing with configs

Table of contents


Installing Confy

Confy is still very early in development and so there is no executable yet. To test, clone the repo and build manually. To do this run


go mod tidy && ./build.sh # build.sh is for Linux only (it's a bash script if that wasn't obvious), Windows users should use go build -o bin/confy.exe
    


Using Confy

Jump to Api reference to see the complete reference

The set command is probably the one you'll be using most of the time. It's simple in practice, it sets a new module/config and backs up the previous one


confy set waybar path/to/new/waybar
        

The rollback command is one you'll like if you've ever messed up your config by mistake and spent hours trying to return it to its working state.


confy rollback waybar
        

Links: Go to Main Projects