You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
TLDR: Configuration should be in the $XDG_CONFIG_HOME/sqlectron/ directory instead of in the homedir. If not defined, $XDG_CONFIG_HOME should be defaulted to $HOME/.config.
This is pretty standard and helps keep clutter out of the homedir :)
The text was updated successfully, but these errors were encountered:
Since we already have many users with their configuration at $HOME/.sqlectron.json. I believe it should follow this approach:
Check if there is $HOME/.sqlectron.json
1.1. Yes - Load config from there.
1.2. No - Check if there is $XDG_CONFIG_HOME/sqlectron/config.json
1.2.1. Yes - Load config from there.
1.2.2. No - Create a config there and load config from there.
https://specifications.freedesktop.org/basedir-spec/basedir-spec-latest.html
TLDR: Configuration should be in the
$XDG_CONFIG_HOME/sqlectron/
directory instead of in the homedir. If not defined,$XDG_CONFIG_HOME
should be defaulted to$HOME/.config
.This is pretty standard and helps keep clutter out of the homedir :)
The text was updated successfully, but these errors were encountered: