Process configuration files are stored in $HOME/.config/programmanager
.
They use TOML syntax.
They can be named anything as long as it ends with .toml
. The text before .toml
will be the process name.
The command to run for the process.
The directory to run the process in.
Whether to start a command when progman
is started. (Or when the configuration is reloaded for the process.)
env
is a table where the key's names are environment variable's names and their values are assigned to the environment variables.
[env]
var = "value"
var2 = "value2"
command = "pwd"
workingdirectory = "/etc/"
command = 'echo "$GREETING"'
[env]
GREETING = "Hallo!"