From 93a8adb02b69be8236864bc2828645a69bc1151b Mon Sep 17 00:00:00 2001 From: Marty Oehme Date: Fri, 12 Dec 2025 09:29:18 +0100 Subject: [PATCH] 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. --- desktop/.config/user-dirs.dirs | 2 +- sh/.config/sh/xdg | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/desktop/.config/user-dirs.dirs b/desktop/.config/user-dirs.dirs index 7514136..5907530 100644 --- a/desktop/.config/user-dirs.dirs +++ b/desktop/.config/user-dirs.dirs @@ -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/" diff --git a/sh/.config/sh/xdg b/sh/.config/sh/xdg index 024e330..63648aa 100644 --- a/sh/.config/sh/xdg +++ b/sh/.config/sh/xdg @@ -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