I'd like to know if it's safe to rename user folders such as Desktop
, Documents
, Music
(I want them to start lowercase).
Are there any programs in a default installation of Ubuntu (10.10/11.04) that expect those folders to exist and that cannot be configured to use different ones?
You can rename the folders in the file
$HOME/.config/user-dirs.dirs
. Here's the default:According to the Filesystem Hierarchy Standard in regard to
/home
directory, you can read:Therefore an application that needs
/home
or even subfolders like/home/user/Music
to run needs to be considered to have a bug.Nevertheless, there may be applications that look up standard directories as defined by
xdg-user-dirs
, as BTW does your system when you change locale.It may most likely be safe to simply rename standard folders in your home, but it is a much better idea to notify
xdg-user-dirs
the way lukasz already pointed out to avoid unwanted side effects from applications that rely on existing standard paths.Create A Symbolic Link
You could either do a simple trick which would be to create a symbolic link to
Arbeitsfläche
. This is guaranteed to work!Modify the naming
The naming of these special folders can be specified by a set of variables. You would need to open the file
~/.config/user-dirs.dirs
for editing and change the following line:to
Then you would need to create the appropriate directory and move your data from the old one to the new one. A log-in and log-out should be enough. Hopefully ;)
But with this solution, it is not impossible that some weirdly developed applications gets confused. Whereas with a symbolic link, this will always work!
You can, see here.
You can just make a symbolic link.