Make install script obey xdg dirs (#549)

This commit is contained in:
Makrennel
2024-05-30 19:02:52 +01:00
parent e5f2cc641d
commit 0c0634aef5
3 changed files with 33 additions and 25 deletions
+7
View File
@@ -0,0 +1,7 @@
#!/usr/bin/env bash
XDG_BIN_HOME=${XDG_BIN_HOME:-$HOME/.local/bin}
XDG_CACHE_HOME=${XDG_CACHE_HOME:-$HOME/.cache}
XDG_CONFIG_HOME=${XDG_CONFIG_HOME:-$HOME/.config}
XDG_DATA_HOME=${XDG_DATA_HOME:-$HOME/.local/share}
XDG_STATE_HOME=${XDG_STATE_HOME:-$HOME/.local/state}