Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Xdg variables (5.21-candidate) #374

Merged

Conversation

simondeziel
Copy link
Member

No description provided.

This should handle latest-candidate as well as X.YZ-edge

Signed-off-by: Simon Deziel <simon.deziel@canonical.com>
(cherry picked from commit d55c0f0)
`lxc config edit` would generate some noise if `/root/.local` didn't exist:

```
Unable to create directory /root/.local/share//nano/: No such file or directory
It is required for saving/loading search history or cursor positions.
```

Normally, `nano` would create the hiearchy `/root/.local/share/nano/` itself if
XDG_DATA_HOME is not defined. This hiearchy creation logic is skipped if the
variable is defined.

The spec [1] contains this:

> If $XDG_DATA_HOME is either not set or empty, a default equal to $HOME/.local/share should be used.
> If $XDG_CONFIG_HOME is either not set or empty, a default equal to $HOME/.config should be used.
> If $XDG_STATE_HOME is either not set or empty, a default equal to $HOME/.local/state should be used.

So let's not export those as `nano` knows about those defaults and can then
create the proper directories without warnings.

[1]: https://specifications.freedesktop.org/basedir-spec/basedir-spec-latest.html#variables

Signed-off-by: Simon Deziel <simon.deziel@canonical.com>
(cherry picked from commit 7dcb188)
The spec [1] contains this:

> If $XDG_DATA_HOME is either not set or empty, a default equal to $HOME/.local/share should be used.
> If $XDG_CONFIG_HOME is either not set or empty, a default equal to $HOME/.config should be used.
> If $XDG_STATE_HOME is either not set or empty, a default equal to $HOME/.local/state should be used.

So let's not export those since applications should simply rely on the
default/empty. Exporting those without any corresponding directory caused issue
with `nano` as can be seen in the previous commit.

Also, on a "normal" desktop environment, none of XDG_DATA_HOME, XDG_CONFIG_HOME
and XDG_STATE_HOME are exported:

```
$ env | grep ^XDG_
XDG_CONFIG_DIRS=/etc/xdg/xdg-ubuntu:/etc/xdg
XDG_MENU_PREFIX=gnome-
XDG_SESSION_DESKTOP=ubuntu
XDG_SESSION_TYPE=wayland
XDG_CURRENT_DESKTOP=ubuntu:GNOME
XDG_SESSION_CLASS=user
XDG_RUNTIME_DIR=/run/user/1000
XDG_DATA_DIRS=/usr/share/ubuntu:/usr/local/share/:/usr/share/:/var/lib/snapd/desktop
```

[1]: https://specifications.freedesktop.org/basedir-spec/basedir-spec-latest.html#variables

Signed-off-by: Simon Deziel <simon.deziel@canonical.com>
(cherry picked from commit 1c07fcf)
@simondeziel simondeziel force-pushed the XDG-variables-5.21-candidate branch from 620b8e4 to 41f287e Compare March 14, 2024 14:40
@simondeziel simondeziel marked this pull request as ready for review March 14, 2024 14:40
@simondeziel simondeziel requested a review from tomponline as a code owner March 14, 2024 14:40
@tomponline tomponline merged commit 49519c6 into canonical:5.21-candidate Mar 14, 2024
5 checks passed
@simondeziel simondeziel deleted the XDG-variables-5.21-candidate branch February 19, 2025 20:03
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants