i3 config generation tool
Project description
i3configger
Generates an i3 config from a set of .conf files in <i3 config folder>/config.d. Does some nifty conditional integration of files on demand and variable resolution (also for i3status configs).
Why?
To be able to split my long and messy config file in many short, aptly named, messy config files
To be able to assign variables to variables (set $var $otherVar)
To be able to also use variables in i3status configurations
To be able to change the config dynamically without having to manually make changes to the config file
Installation
Note the code is Python 3.6 only. I want to play with the new toys :)
i3configger is released on the Python Package Index. The standard installation method is:
$ pip install i3configger
Features
build main config and one or several i3status configs from the same sources
variables are handled slightly more intelligently than i3 does it (variables assigned to other variables are resolved)
end of line comments are possible (removed at build time)
variables in i3status configs are also resolved (set anywhere in the sources)
reload or restart i3 when a change has been done (using i3-msg)
notify when new config has been created and activated (using notify-send)
simple way to render partials based on key value pairs in file name
simple way to change the configuration by sending messages
build config as one shot script or watch for changes
Send messages to watching i3configger process
If i3 -C fails with the newly rendered config, the old config will be kept, no harm done
Getting started
Simple
Cut your config file into chewable chunks with the extension .conf and put them in the directory <i3 config folder>/config.d.
Run i3configger.
i3configger.json and .state.json are created in config.d
A new config file is generated instead of your old config.
A backup of the last config is kept with suffix .bak
i3configger.json can be used to do configuration of the status bars.
.state.json remembers the state of your current settings
Watch files in the background
If you are experimenting with the config and want it automatically updated on change:
run it in the foreground:
$ i3configger --watch
run it as a daemon:
$ i3configger --daemon
stop the daemon:
$ i3configger --kill
Diving a bit deeper
I use this to generate my own i3 config. Here are the config partials and settings: .i3/config.d, from which config and all i3status.*conf files are built.
With my config, the call:
$ i3configger select scheme solarized-dark
will integrate scheme.solarized-dark.conf in the build and exclude all other scheme.*.conf files.
$ i3configger select-next scheme
will switch to the next scheme (and wrap around to the first scheme)
This is persisted in .state.json
If I want to get my dock out of the way:
$ i3configger set mode hide
``select`` integrates different partial files. Config partials that follow the naming scheme <key>.<value>.conf are only rendered into the config if explicitly set via configuration or a message from the command line.
``set`` assigns values to arbitrary variables that are set anywhere in the configuration.
All changes done this way are persisted in .state.json.
Resources
I3 official
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.