From e81b961dec1cf4b23f71c1a34b2d75414a7f44a9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Chlo=C3=A9=20Vulquin?= Date: Wed, 14 May 2025 19:31:20 +0200 Subject: sh: add xdg plugin can't believe I have to do this but... in short, a bunch of programs check for whether XDG_* is set in order to activate their XDG compliance so even if you want the defaults, you're better off setting them... --- dot_local/share/sh/xdg | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 dot_local/share/sh/xdg (limited to 'dot_local/share') diff --git a/dot_local/share/sh/xdg b/dot_local/share/sh/xdg new file mode 100644 index 0000000..68c4a54 --- /dev/null +++ b/dot_local/share/sh/xdg @@ -0,0 +1,3 @@ +[ -z "$XDG_DATA_HOME" ] || export XDG_DATA_HOME=~/.local/share +[ -z "$XDG_CONFIG_HOME" ] || export XDG_CONFIG_HOME=~/.config +[ -z "$XDG_STATE_HOME" ] || export XDG_STATE_HOME=~/.local/state -- cgit v1.2.3