common/dir.c: do not include openbox/ dirs

It is better to be explicit with config files and only using those
specifically intended for labwc. Whilst compatibility with openbox is
intended, there are areas where it just doesn't make sense to include
settings intended for openbox, for example in the case of
$HOME/.config/openbox/autostart

With built-in icons and theme/config settings, it should be easy for new
users to get started without spending time on config files anyway.
This commit is contained in:
Johan Malm 2020-08-31 08:17:34 +01:00
parent 127eddfd96
commit 7afc189c06
2 changed files with 0 additions and 6 deletions

View file

@ -18,8 +18,6 @@ searched for in the following order:
- `${XDG_CONFIG_HOME:-$HOME/.config}/labwc`
- `${XDG_CONFIG_DIRS:-/etc/xdg}/labwc`
- `${XDG_CONFIG_HOME:-$HOME/.config}/openbox`
- `${XDG_CONFIG_DIRS:-/etc/xdg}/openbox`
# RC.XML `<lab>`

View file

@ -24,10 +24,6 @@ static struct dir config_dirs[] = {
{ "HOME", ".config/labwc" },
{ "XDG_CONFIG_DIRS", "labwc" },
{ NULL, "/etc/xdg/labwc" },
{ "XDG_CONFIG_HOME", "openbox" },
{ "HOME", ".config/openbox" },
{ "XDG_CONFIG_DIRS", "openbox" },
{ NULL, "/etc/xdg/openbox" },
{ NULL, NULL }
};