a. ubuntu-tweak - totally gui
- Here are some options for desktop 'viewing':
b. gconf-editor - get under the hood, but still gui.
gconf-editor /apps/nautilus
Two folders you would be interested in would be Desktop and Preferences. Preferences has an entry to 'turn on' the desktop display ( show_desktop). Desktop allows you to select what you want to see: trash bin, mounted partitions, Desktop folder items, etc.
c. Command line Any of the gconf selections can be run from the command line. You can use true/false or 1/0 for boolean entries. You can easily make shortcuts for these commands to turn the specific display on or off.
For example, this command displays/hides the trash bin on the Desktop, if the desktop is enabled:
*Displayed:*
gconftool-2 --type bool --set /apps/nautilus/desktop/trash_icon_visible "true"
*Hidden:*
gconftool-2 --type bool --set /apps/nautilus/desktop/trash_icon_visible "false"