[go: up one dir, main page]

Menu

[r30]: / etc / gconf / ct-gconf.sh  Maximize  Restore  History

Download this file

31 lines (27 with data), 892 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#!/bin/sh
## ct-gconf.sh for ctafconf in /home/simon/.ctafconf/etc/gconf
##
## Made by
## Login <simon@epita.fr>
##
## Started on Thu Oct 13 04:27:37 2005
## Last update Thu Oct 13 04:34:24 2005
##
##CTAFCONF
param=$1
if [ w$param = wdump ] ; then
#gnone-panel-bar
gconftool-2 -dump /apps/panel > ~/.ctafconf/etc/gconf/panel
#gnome style
gconftool-2 -dump /desktop/gnome/interface > ~/.ctafconf/etc/gconf/gnome-interface
#gnome-terminal profile
gconftool-2 -dump /apps/gnome-terminal > ~/.ctafconf/etc/gconf/gnome-terminal
#metacity theme
gconftool-2 -dump /apps/metacity/general > ~/.ctafconf/etc/gconf/metacity-window
fi
if [ w$param = wload ] ; then
gconftool-2 -load=~/.ctafconf/etc/gconf/panel
gconftool-2 -load=~/.ctafconf/etc/gconf/gnome-interface
gconftool-2 -load=~/.ctafconf/etc/gconf/gnome-terminal
gconftool-2 -load=~/.ctafconf/etc/gconf/metacity-window
fi