summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVlad Doster <mvdoster@gmail.com>2020-07-08 07:49:27 -0500
committerGitHub <noreply@github.com>2020-07-08 08:49:27 -0400
commite1a4273e11fba4ea2e396b83673f033cd67a40bb (patch)
tree8a8d1ad9e85295434e8e857a96cda7c48b5e306e
parentae9c12a861d07b792ebe24b85bda1567cc5c37ab (diff)
downloadeibhear-e1a4273e11fba4ea2e396b83673f033cd67a40bb.tar.gz
eibhear-e1a4273e11fba4ea2e396b83673f033cd67a40bb.tar.zst
eibhear-e1a4273e11fba4ea2e396b83673f033cd67a40bb.zip
Make dir shortcuts use XDG DIRS and then use a default if need be (#725)
* sort and make home shortcut break less * Update directories * Formatting * Add missing brackets * sort Co-authored-by: Luke Smith <luke@lukesmith.xyz>
-rw-r--r--.config/directories20
1 files changed, 10 insertions, 10 deletions
diff --git a/.config/directories b/.config/directories
index 29e228f..5e8173f 100644
--- a/.config/directories
+++ b/.config/directories
@@ -1,11 +1,11 @@
# You can add comments to these files with #
-d ~/Documents
-D ~/Downloads
-h ${HOME:-~/}
-m ~/Music
-pp ~/Pictures
-vv ~/Videos
-cf ${XDG_CONFIG_HOME:-$HOME/.config}
-cac ${XDG_CACHE_HOME:-$HOME/.cache}
-mn /mnt
-sc ~/.local/bin
+cac ${XDG_CACHE_HOME:-$HOME/.cache}
+cf ${XDG_CONFIG_HOME:-$HOME/.config}
+D ${XDG_DOWNLOAD_DIR:-$HOME/Downloads}
+d ${XDG_DOCUMENTS_DIR:-$HOME/Documents}
+h ${XDG_CONFIG_HOME:-$HOME}
+m ${XDG_MUSIC_DIR:-$HOME/Music}
+mn /mnt
+pp ${XDG_PICTURES_DIR:-$HOME/Pictures}
+sc ~/.local/bin
+vv ${XDG_VIDEOS_DIR:-$HOME/Videos} \ No newline at end of file