We already use auto-capitalisation in the shell, so we actually benefit from having capitalised names, considering it reduces headaches induced by hardcoded paths. Also, now that we've accepted that the home directory will be a mess, it will aid standing out. Also source the file in .profile, because it should've been from the start.
17 lines
727 B
Plaintext
17 lines
727 B
Plaintext
# This file is written by xdg-user-dirs-update
|
|
# If you want to change or add directories, just edit the line you're
|
|
# interested in. All local changes will be retained on the next run.
|
|
# Format is XDG_xxx_DIR="$HOME/yyy", where yyy is a shell-escaped
|
|
# homedir-relative path, or XDG_xxx_DIR="/yyy", where /yyy is an
|
|
# absolute path. No other format is supported.
|
|
#
|
|
export XDG_PICTURES_DIR="$HOME/Photos"
|
|
export XDG_DESKTOP_DIR="$HOME/Desktop"
|
|
export XDG_DOWNLOAD_DIR="$HOME/Downloads"
|
|
export XDG_TEMPLATES_DIR="$HOME/Templates"
|
|
export XDG_PUBLICSHARE_DIR="$HOME/Public"
|
|
export XDG_DOCUMENTS_DIR="$HOME/Documents"
|
|
export XDG_MUSIC_DIR="$HOME/Music"
|
|
export XDG_PICTURES_DIR="$HOME/Pictures"
|
|
export XDG_VIDEOS_DIR="$HOME/Videos"
|