Ubuntu : Konfigurasi gnome desktop dengan Gconftool-2

Untuk penjelasan kali ini saya akan mencoba untuk memaparkan bagaimana cara mengkonfigurasi gnome desktop dengan Gconftool-2. Oke untuk lebih jelasnya mari kita lihat konfigurasinya dan ikuti langkah-langkah dibawah ini :

[Format secara umum]

gconftool-2 --set /path/to/setting --type <type> "value"

[Melihat Konfigurasi]

$ gconftool-2 -R /

[Get Parameter]

melihat lokasi gambar background

$ gconftool-2 --get /desktop/gnome/background/picture_filename

[Tipe Parameter]

Tipe yang dapat digunakan sesudah perintah type

xgconftool-2 --set /path/to/setting --type

[Set Font Widget]

$ gconftool-2 --type string --set /desktop/gnome/interface/font_name "Serif 12"

[Set Background Picture]

$ gconftool-2 --set /desktop/gnome/background/picture_filename  --type string "/usr/share/backgrounds/africa-s-sun.png"

[Proxy Automatis]

# Set the proxy
if /sbin/ifconfig eth0 | grep -q 10.66.6.17
then
  gconftool-2 –set “/system/http_proxy/use_http_proxy” –type bool “true”
else
  gconftool-2 –set “/system/http_proxy/use_http_proxy” –type bool “false”
fi
# Set the proxy

if /sbin/ifconfig eth0 | grep -q 10.66.6.17
then
  gconftool-2 –set “/system/http_proxy/use_http_proxy” –type bool “true”
else
  gconftool-2 –set “/system/http_proxy/use_http_proxy” –type bool “false”
fi

[Gnome ScreenSaver Lock]

$ gconftool-2 --set /apps/gnome-screensaver/lock_enabled --type bool 1"

[Set Nautilus File Browsher]

$ gconftool-2 --set "/apps/nautilus/preferences/always_use_browser" --type bool TRUE
$ gconftool-2 --set "/apps/nautilus/preferences/click_policy" --type string "single"

Selesai, sangat mudahkan cukup menghapal sintax2 tersebut pasti kalian bisa merubah dekstop 🙂 Semoga bermanfaat dan berguna amin..

Untuk Sumber yang lebih jelas, kunjunggi situs http://opensource.telkomspeedy.com/wiki/index.php/Gconftool-2_untuk_mengkonfigurasi_gnome_desktop

Related Posts

Leave a Reply

Your email address will not be published. Required fields are marked *