Please bear with us as we work to restore functionality to dotfiles.org.
voyeg3r
/gconf-default
Config gnome for all user wich default options or mandatory
#!/bin/bash
# arquivo de configuração global para gnome
#######################################################################
#To restore the default preference values for a user, run the following #command:
# gconftool-2 --direct --config-source user_configuration_source #--recursive-unset
#######################################################################
# Show Tooltips
gconftool-2 --direct \
--config-source xml:readwrite:/etc/gconf/gconf.xml.defaults \
--type bool \
--set /apps/panel/global/tooltips_enabled \
true
# Don't open folders in new windows
gconftool-2 --direct \
--config-source xml:readwrite:/etc/gconf/gconf.xml.defaults \
--type bool --set \
/apps/nautilus/preferences/always_use_browser \
true
# Single-click opens files and folders
gconftool-2 --direct \
--config-source xml:readwrite:/etc/gconf/gconf.xml.defaults \
--type bool \
--set /desktop/gnome/peripherals/mouse/single_click \
true
# Roll-up titlebar instead of maximize
gconftool-2 --direct \
--config-source xml:readwrite:/etc/gconf/gconf.xml.defaults \
--type string \
--set /apps/metacity/general/action_double_click_titlebar \
toggle_shade
# don't show startup errors
gconftool-2 --direct \
--config-source xml:readwrite:/etc/gconf/gconf.xml.mandatory \
--type bool \
--set /apps/gnome_settings_daemon/screensaver/show_startup_errors \
false
# Don't use a screensaver
gconftool-2 --direct \
--config-source xml:readwrite:/etc/gconf/gconf.xml.mandatory \
--type bool \
--set /apps/gnome_settings_daemon/screensaver/start_screensaver \
false