config.toml only searched in /etc/ #7
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
config.toml is only ever searched in
/etc/goca/. As per documentation this file should also be searched in$XDG_CONFIG_HOME/goca/config.tomlor$HOME/.goca/config.toml.~/.goca/is never searchedThe XDG_CONFIG stuff ist valid for non-root users. If root uses the goca he/she acts as a global admin and therefore he doesn't have a private configuration.
I'll need to update the docs.
Oh, steht doch dort schon
Goca can use a configuration file. The default location is
$XDG_CONFIG_HOME/goca/config.tomlor$HOME/.goca/config.tomlwhenrunning with an effective UID != 0, and it is
/etc/goca/config.tomlwhen running with an effective UID == 0. The latter mode is not
recommended. An alternative location can be used by using
-configcommand line parameter (which must be the very first parameter).
right, sorry.