Gollum@feddit.de to Programmer Humor@programming.dev · 1 year agoD or d come oni.imgur.comimagemessage-square178fedilinkarrow-up11.4Karrow-down148 cross-posted to: programmerhumor@lemmy.ml
arrow-up11.35Karrow-down1imageD or d come oni.imgur.comGollum@feddit.de to Programmer Humor@programming.dev · 1 year agomessage-square178fedilink cross-posted to: programmerhumor@lemmy.ml
minus-squareMooseBoys@lemmy.worldlinkfedilinkarrow-up43·1 year agoEven worse, many components will ignore the XDG_DOWNLOAD_DIR var so even if you manually change it to $HOME/downloads (lower-case) it will often break things.
minus-squareSynthead@lemmy.worldlinkfedilinkarrow-up38arrow-down4·1 year agoKeep filling those bugs and stop complaining on random forums, kids
minus-squareschnurrito@discuss.tchncs.delinkfedilinkarrow-up28·1 year agoSomething something symlink Downloads to downloads
minus-squareMooseBoys@lemmy.worldlinkfedilinkarrow-up3·1 year agoYeah but the main issue is that I don’t want there to be a Downloads directory in my home.
minus-squarepaperplane@lemmy.worldlinkfedilinkarrow-up4·1 year agoThis is all fun and games until you try moving a backup to a file system that’s case-insensitive
minus-squarezlatko@programming.devlinkfedilinkarrow-up3·1 year agoWhy not just cd $XDG_DOWNLOAD_DIR in the first place?
minus-squareunalivejoy@lemm.eelinkfedilinkEnglisharrow-up3·edit-21 year agoThat’s not an environment variable. It’s defined in ${XDG_CONFIG_HOME:-$HOME/.config}/user-dirs.dirs. Though you can use the xdg-user-dir DOWNLOAD command to get it automatically.
Even worse, many components will ignore the
XDG_DOWNLOAD_DIR
var so even if you manually change it to$HOME/downloads
(lower-case) it will often break things.Keep filling those bugs and stop complaining on random forums, kids
Something something symlink Downloads to downloads
Yeah but the main issue is that I don’t want there to be a
Downloads
directory in my home.ln -s ~/Downloads ~/downloads
This is all fun and games until you try moving a backup to a file system that’s case-insensitive
Why not just
cd $XDG_DOWNLOAD_DIR
in the first place?That’s not an environment variable. It’s defined in
${XDG_CONFIG_HOME:-$HOME/.config}/user-dirs.dirs
.Though you can use the
xdg-user-dir DOWNLOAD
command to get it automatically.