Archive for GConf

Apagado sin espera (60sec) [Gnome/Ubuntu]

Ahorrate un click al apagar tu maquina!.

En un terminal,copiar y pegar el siguiente comando:

gconftool-2 -s '/apps/indicator-session/suppress_logout_restart_shutdown' --type bool true

Lo anterior tambien se puede lograr via el editor de configuraciones.

Enjoy!.

Comments (2) »

Sabayon | User profiles made simple

Sabayon proporciona una sana manera de editar los valores predeterminados de GConf y GConf mandatory keys: De la misma manera que editar tu escritorio.

Sabayon lanza los Perfiles en una ventana Xnest. Los cambios que se realicen en esa ventana (Xnest) se guardaràn en el perfil.

Screenshots + mas info

Leave a comment »

Bloquear completamente el panel de Gnome

Una vez configurado (True), el panel no permitirá ningún cambio en su configuración.Sin embargo los Applets individuales pueden necesitar ser bloqueados por separado.

gconftool-2 --type Boolean --set /apps/panel/global/locked_down True

Leave a comment »

Activar Compositing desde un terminal [Metacity]

Apuntes de configuracion. (Compositing Manager)

gconftool-2 --type Boolean --set /apps/metacity/general/compositing_manager True

Leave a comment »

Shade windows con la rueda del ratón en la barra de título [Metacity]

Esto se puede lograr tambien via Ubuntu Tweak,pero yo prefiero hacerlo con GConf.

shade_win_metacity

El comando es el siguiente:

gconftool-2 --type String --set /apps/gwd/mouse_wheel_action shade

Comments (2) »

Cambiar el wallpaper desde el terminal [Gnome]

Vaya tip productivo este pero se ha preguntado en este foro. Despues de picture_filename dejas un espacio y pones la ruta a el wallpaper que deseas utilizar.Ejemplo:

gconftool-2 --type string --set /desktop/gnome/background/picture_filename /home/nico/.walls/LightGrey_01_16_10.png

Comments (8) »

Gconf-editor via el terminal

Mi configuraciòn. (Apuntes)

## Remove app icon (button_layout) — Arrangement of buttons on the titlebar (Window)

gconftool-2 --type string --set /apps/metacity/general/button_layout :minimize,maximize,close

## Computer & Home icon visible on desktop + Disable tooltips (Panel) + Show advanced permissions in the file property dialog

gconftool-2 --type Boolean --set /apps/nautilus/desktop/home_icon_visible True &&
gconftool-2 --type Boolean --set /apps/nautilus/desktop/computer_icon_visible True &&
gconftool-2 --type Boolean --set /apps/nautilus/preferences/show_advanced_permissions True &&
gconftool-2 --type Boolean --set /apps/panel/global/tooltips_enabled False

## Default Thumbnail Icon Size (Nautilus) + Width of the side pane

gconftool-2 --type Integer --set /apps/nautilus/icon_view/thumbnail_size 48 && gconftool-2 --type Integer --set /apps/nautilus/preferences/sidebar_width 200

Comments off