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>
This commit is contained in:
parent
ae9c12a861
commit
e1a4273e11
1 changed files with 10 additions and 10 deletions
|
@ -1,11 +1,11 @@
|
||||||
# You can add comments to these files with #
|
# You can add comments to these files with #
|
||||||
d ~/Documents
|
cac ${XDG_CACHE_HOME:-$HOME/.cache}
|
||||||
D ~/Downloads
|
cf ${XDG_CONFIG_HOME:-$HOME/.config}
|
||||||
h ${HOME:-~/}
|
D ${XDG_DOWNLOAD_DIR:-$HOME/Downloads}
|
||||||
m ~/Music
|
d ${XDG_DOCUMENTS_DIR:-$HOME/Documents}
|
||||||
pp ~/Pictures
|
h ${XDG_CONFIG_HOME:-$HOME}
|
||||||
vv ~/Videos
|
m ${XDG_MUSIC_DIR:-$HOME/Music}
|
||||||
cf ${XDG_CONFIG_HOME:-$HOME/.config}
|
mn /mnt
|
||||||
cac ${XDG_CACHE_HOME:-$HOME/.cache}
|
pp ${XDG_PICTURES_DIR:-$HOME/Pictures}
|
||||||
mn /mnt
|
sc ~/.local/bin
|
||||||
sc ~/.local/bin
|
vv ${XDG_VIDEOS_DIR:-$HOME/Videos}
|
Loading…
Reference in a new issue