Xfce4自定义用户文件夹
背景 在Linux上,一直使用的是xfce桌面环境,要的就是一个简洁、轻量、稳定,够用却又不算丑。 但是,在中文环境下,默认的下载目录名字就是下载,在命令行下使用时还要切换输入法,麻烦,虽然可以建立软链接解决,但还是想知道有没有更直接的方法。 解决方案 一番折腾后,发现了$HOME/.config/目录下的user-dirs.dirs文件,内容如下: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 # 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....