You are not logged in.
Pages: 1
How in the world do I get rid of these annoying icons? I have tried grepping their titles as well as looking on desktop in my home folder. I've looked at guides for other distros but have found nothing that will work on arch. Please help I like a clean desktop.
Offline
What window manager or desktop environment are you using?
Offline
Gnome, XFCE, or KDE?
Offline
Sorry I'm using gnome.
Offline
In gconf-editor, uncheck the corresponding boxes in apps/nautilus/desktop
Offline
Ah ok thank you :-D!
Offline
I got tired of setting this up on each machine so I wrote a simple bash script that configures my preferences:
$ cat bin/setup-nautilus.sh
#!/bin/sh
# Set some good defaults for nautilus.
gconftool-2 --type boolean --set /apps/nautilus/preferences/always_use_browser true
gconftool-2 --type string --set /apps/nautilus/preferences/default_folder_viewer list_view
gconftool-2 --type boolean --set /apps/nautilus/preferences/desktop_is_home_dir true
gconftool-2 --type boolean --set /apps/nautilus/preferences/enable_delete true
gconftool-2 --type boolean --set /apps/nautilus/preferences/show_desktop false
The last one is what you're trying to accomplish, but the others are handy (and pretty standard) too
Last edited by thayer (2008-10-08 21:10:49)
thayer williams ~ cinderwick.ca
Offline
Don't forget to put [solved] in this thread's title
Offline
Somehow the toggle show_desktop true or false doesn't work anymore. My icons won't display no matter what... Any suggestions?
Update: I initiated an sudo nautilus. Normally this would just bring up an filebrowser with root privaliges. However, this time it changed my desktop background and showed root's desktop icons.
Last edited by HydroDiOxide (2008-10-15 11:31:32)
"Overspecialize and you breed in weakness..." Major Motoko Kusanagi
Offline
Somehow the toggle show_desktop true or false doesn't work anymore. My icons won't display no matter what... Any suggestions?
It could require a logout/login to take effect (though it shouldn't), but it's more likely that you also set "desktop_is_home_dir" to true.
Update: I initiated an sudo nautilus. Normally this would just bring up an filebrowser with root privaliges. However, this time it changed my desktop background and showed root's desktop icons.
The gconf tweaks only affect the current user. When you run sudo, you are technically running the application as the root user, which is why the desktop loads and icons appear, etc. You can fix this by running the gconf editor with sudo and making the same changes....or running my script with sudo.
thayer williams ~ cinderwick.ca
Offline
It could require a logout/login to take effect (though it shouldn't), but it's more likely that you also set "desktop_is_home_dir" to true.
This was not the case. However, looking into it was part of the fix. Setting this option and enabling the desktop showed the contents of my home_dir on the desktop. After that I could remove the tick at "desktop_is_home_dir" and the contents of my Desktop folder were displayed on the desktop. Seems like a bug of some sort to me... Thanks!
Update: after logging out and logging back in, the trick mentioned above doesn't work anymore. No combination of ticks renders desktop icons. I guess something really is broken.
Update2: somehow it works okeh again. Strange things happening with the Gnome...
Last edited by HydroDiOxide (2008-10-16 20:23:18)
"Overspecialize and you breed in weakness..." Major Motoko Kusanagi
Offline
Pages: 1