Dotter is a dotfile manager and templater.
Dotfiles are configuration files that usually live in the home directory and start with a dot.
Often times, it is desirable to have a backup of all the configurations on your system, which is why a lot of users have their dotfiles saved in a git repository, then symlinking them to their target locations using ln -s
.
However, there are several issues with that barebones approach: - Hard to keep track of what comes from where once you have more than a handful of dotfiles - Tedious to setup on a new machine - you need to manually create every single link - No real way to handle differences between machines - say you want the battery meter on your bar to not appear on your desktop machine
Dotter aims to solve all those problems by providing a flexible configuration and automatic templating or symlinking to the target locations.
⚠️ THIS PROJECT IS UNDER HEAVY DEVELOPMENT. I use it regularly myself so it's reasonably tested, but expect bugs to happen. If you find a bug, please open an issue describing how to reproduce it, and it will get fixed.\ I create Releases often so make sure you check whether the bug was fixed in the latest one!
Download the binary for your platform from the latest release and then put it in your $PATH
or in your dotfile repository (then you'd run it with ./dotter
).
Alternatively, Dotter is on crates.io, so run cargo install dotter
after installing rust to install it that way.
~/.dotfiles
)~/.i3/config
can be renamed to simply i3
.dotter_settings
and two files: global.toml
and local.toml
.local.toml
to your .gitignore
- that file contains the machine-specific configuration, so there's no point uploading it.
local.toml
s in your git repo - then select the appropriate one using the -l
flag.dotter
has execute permissions with chmod +x dotter
, then you can run it with ./dotter
Dotter operates under a concept of "packages". This comes from the idea that you don't always want all your dotfiles to be deployed - sometimes only part of the programs are installed.
In global.toml
, packages are defined. Which packages are deployed is configured in local.toml
.
Here's an example global.toml
, that showcases several features:
```toml
[helpers] colorhex2rgb = "dottersettings/helpers/color_hex2rgb.rhai"
~/.dotfiles
, it will map~/.dotfiles/zsh/zprofile
to ~/.zprofile
,~/.dotfiles/zshrc
to ~/.zshrc
[zsh.files] "zsh/zprofile" = "~/.zprofile" zshrc = "~/.zshrc"
[zsh.variables] prompt_color = "#00FF00"
[i3.files] # requires "graphics" Xinitrc = "~/.xinitrc" i3 = "~/.i3/config" polybar = "~/.config/polybar/config"
[graphics.variables] fontsize = 14 primarycolor = "#CCCCCC" background_color = "#333333" ```
As you can see, a global.toml
contains a description of all the dotfiles that are possible to install.
But you don't always want all of them. Which packages are installed as well as machine-specific tweaks are configured in local.toml
:
```toml
packages = ["i3", "graphics"]
[i3.variables] networkinterface = "wlan0" screensize = "1920x1080" terminal = "xfce4-terminal"
false
.[i3.files] Xinitrc = "~/.my_Xinitrc" polybar = false
[graphics.variables] font_size = 18 ```
For the initial configuration, you might want to have a single always
package that contains just a files
section, then select it in local.toml
.
You can always break it up into smaller packages later!
For an example of a repository that uses dotter, check out my dotfiles. The folder of interest is dotter_settings
.
Dotter uses Handlebars as its rendering engine.
I recommend reading through that link to learn the full capabilities of the engine, but the most important feature is that it will substitute {{variable_name}}
with the variable's value.
So, if your configuration had the variables name = "Jack"
and surname = "Black"
, rendering the file
Hello, {{name}} {{surname}}!
will result in
Hello, Jack Black!
This is useful for the same reason constants in code are - when you have repeating values many times in the same file, or have the same value repeated in many files, it's useful to have it declared once then templated into everywhere it's used. Then, if you change it in the declaration, it will automatically change everywhere its referenced.
Some examples could be: colors in your colorscheme can be automatically shared between all applications, font sizes can be kept consistent accross applications, etc.
Handlebars is more than simple find-and-replace though - it has many other features, like if
blocks.\
For example, if age = 8
then:
Jonny can{{#if (lt age 18)}}not{{/if}} drink alcohol
Will render as:
Jonny cannot drink alcohol
Handlebars supports custom helpers - for example, a helper that will convert a color from hex to rgb named hex2rgb
will be used like so: {{hex_to_rgb background_color}}
.\
The Rust implementation of handlebars supports custom helpers written in rhai which is a scripting language.
To define one yourself, add it in the optional [helpers]
section in global.toml
in the form of script_name = "script_file_location"
.\
The ones I currently use will be in the helpers folder of my dotfiles - you can use them as examples.
Additionally, there's helpers implemented in rust.\
The ones that currently exist:
- math
- used like {{math font_size "*" 2}}
. Executed by meval-rs.
TODO: This functionality will be reworked soon (see issue #6) so I won't document it yet.
Now that you've configured all the global and local file sections, you can simply run dotter
from within your repository.\
All the files will be deployed to their target locations.
Check out dotter -h
for the commandline flags that Dotter supports:
``` Dotter 0.5.2 A small dotfile manager.
USAGE: dotter.exe [FLAGS] [OPTIONS]
FLAGS: --dryrun Dry run - don't do anything, only print information. Implies RUSTLOG=info unless specificed otherwise --no-cache Don't use a cache (caching is used in order to avoid touching files that didn't change) -h, --help Prints help information -V, --version Prints version information
OPTIONS:
-c, --cache-directory
Dotter uses the env_logger
rust library for displaying errors and warnings. To configure logging level, use the RUST_LOG
environment variable. The options are, in order of least verbose to most verbose: error
, warn
, info
, debug
, trace
. The default is error
.
Contributions to Dotter are welcome, whether in the form of a pull request or an issue (for bug repots, feature requests, or other helpful comments)