bagex

Synopsis

bagex serves as an entrance for programs, it manages environment variables for the programs according to a configuration file.

Configuration

The configuration file is in toml format, and consists of 3 parts: path, env, and exe.

An illustrative example configuration can be found here.

Usage

bagex takes an executable name as its argument, and tries to read its configuration from $XDG\_CONFIG\_HOME/bagex/config.toml if the environment variable XDG\_CONFIG\_HOME is set, otherwise it tries to read $HOME/.config/bagex/config.toml. Optionally use -c|--config-file to specify the configuration file to read. Example usage:

```shell $ cat config.toml [env.answertotheultimatequestionoflifetheuniverseandeverything] 42 = [ "printenv", ] [exe.printenv] somerandomstring = "YmFnZXgK" pi = 3.14

$ bagex -c config.toml printenv [..truncated..] answertotheultimatequestionoflifetheuniverseandeverything=42 pi=3.14 somerandomstring=YmFnZXgK ```

To add arguments for the requested executable (printenv in the above example), append the arguments after a double dash (--):

shell $ bagex -c ./config.toml bagex -- --version bagex 0.1.0

Use -d|--dry-run to only shows the command to run and abort:

shell $ bagex -c ./config -d echo -- -en "Hello world!" /sbin/echo "-en" "Hello world!"

Use cases

For systemd services

It is quite convenient to set a process' environment in a systemd service, but every time the environment has to change, one must run systemctl [--user] daemon-reload after changing the .service file, then call systemctl [--user] restart foo.service to update the running environment of the program.

bagex makes this process even more convenient by specifying the environment of a program in a separate config file, so that each time the environment is changed in bagex's config, only a systemctl [--user] restart foo.service has to be called.

For application launchers (like rofi, sxhkd, etc.)