xdg: Move music and videos into right media dir
Default to have both videos and audio (music) in the correct dirs under
`~/media/{audio,video}` directly. This makes logical sense but also fits
much better to my current organization scheme.
This commit is contained in:
parent
23cb8d32e5
commit
93a8adb02b
2 changed files with 3 additions and 3 deletions
|
|
@ -8,7 +8,7 @@
|
|||
XDG_DESKTOP_DIR="$HOME/desktop"
|
||||
XDG_DOCUMENTS_DIR="$HOME/documents"
|
||||
XDG_DOWNLOAD_DIR="$HOME/downloads"
|
||||
XDG_MUSIC_DIR="$HOME/media/audio/music"
|
||||
XDG_MUSIC_DIR="$HOME/media/music"
|
||||
XDG_PICTURES_DIR="$HOME/pictures"
|
||||
XDG_PUBLICSHARE_DIR="$HOME/"
|
||||
XDG_TEMPLATES_DIR="$HOME/"
|
||||
|
|
|
|||
|
|
@ -26,9 +26,9 @@ test "$XDG_DOCUMENTS_DIR" || export XDG_DOCUMENTS_DIR="$HOME/documents"
|
|||
test "$XDG_DOWNLOAD_DIR" || export XDG_DOWNLOAD_DIR="$HOME/downloads"
|
||||
|
||||
export XDG_MEDIA_DIR="$HOME/media"
|
||||
export XDG_MUSIC_DIR="$XDG_MEDIA_DIR/audio/music"
|
||||
export XDG_MUSIC_DIR="$XDG_MEDIA_DIR/music"
|
||||
export XDG_PICTURES_DIR="$HOME/pictures"
|
||||
export XDG_VIDEOS_DIR="$HOME/videos"
|
||||
export XDG_VIDEOS_DIR="$XDG_MEDIA_DIR/videos"
|
||||
|
||||
## Non-Standard additions
|
||||
# non-standard, is added to path to enable execution of any files herein
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue