~cairo-dock-team/ubuntu/oneiric/cairo-dock/2.3.0-3

« back to all changes in this revision

Viewing changes to data/apply-default-values-to-conf.sh

  • Committer: Bazaar Package Importer
  • Author(s): Matthieu Baerts (matttbe)
  • Date: 2010-08-09 23:26:12 UTC
  • mto: This revision was merged to the branch mainline in revision 13.
  • Revision ID: james.westby@ubuntu.com-20100809232612-pocdxliaxjdetm37
Tags: upstream-2.2.0~0beta4
Import upstream version 2.2.0~0beta4

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/sh
 
2
 
 
3
# Compiz check for Cairo-Dock
 
4
#
 
5
# Copyright : (C) 2009 by Fabounet
 
6
# E-mail    : fabounet@glx-dock.org
 
7
#
 
8
#
 
9
# This program is free software; you can redistribute it and/or
 
10
# modify it under the terms of the GNU General Public License
 
11
# as published by the Free Software Foundation; either version 2
 
12
# of the License, or (at your option) any later version.
 
13
#
 
14
# This program is distributed in the hope that it will be useful,
 
15
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
16
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
17
# GNU General Public License for more details.
 
18
# http://www.gnu.org/licenses/licenses.html#GPL
 
19
 
 
20
export CONF_FILE="cairo-dock.conf"
 
21
 
 
22
function set_value()
 
23
{
 
24
        sed -i "s/^$1 *=/$1 = $2/g"
 
25
        echo -n "."
 
26
}
 
27
 
 
28
set_value "auto-hide"                           false
 
29
set_value "reserve space"                       true
 
30
set_value "x gap"                                       0
 
31
set_value "y gap"                                       0
 
32
set_value "xinerama"                            false
 
33
set_value "max autorized width"         0
 
34
set_value "pop-up"                                      false
 
35
set_value "raise shortcut"                      ""
 
36
set_value "leaving delay"                       250
 
37
set_value "show delay"                          300
 
38
set_value "lock icons"                          false
 
39
set_value "show applications"           true
 
40
set_value "unique PID"                          false
 
41
set_value "group by class"                      false
 
42
set_value "group exception"                     ""
 
43
set_value "hide visible"                        false
 
44
set_value "current desktop only"        false
 
45
set_value "mix launcher appli"          true
 
46
set_value "overwrite xicon"                     true
 
47
set_value "overwrite exception"         "pidgin;xchat;amsn"
 
48
set_value "window thumbnail"            true
 
49
set_value "minimize on click"           true
 
50
set_value "close on middle click"       true
 
51
set_value "auto quick hide"                     false
 
52
set_value "auto quick hide on max"      false
 
53
set_value "demands attention with dialog" true
 
54
set_value "animation on demands attention" "rotate"
 
55
set_value "animation on active window" "wobbly
 
56
set_value "max name length"                     15
 
57
set_value "visibility alpha"            "0.2"
 
58
set_value "animate subdocks"            true
 
59
#set_value "unfold factor"                      8
 
60
#set_value "shrink down steps"          12
 
61
#set_value "move down speed"            "0.25"
 
62
set_value "refresh frequency"           35
 
63
set_value "dynamic reflection"          false
 
64
set_value "opengl anim freq"            33
 
65
set_value "cairo anim freq"                     25
 
66
set_value "always horizontal"           true
 
67
set_value "show hidden files"           false
 
68
set_value "fake transparency"           false
 
69
set_value "modules"                                     "dock-rendering;dialog-rendering;Animated icons;clock;logout;dustbin;stack;shortcuts;GMenu;switcher;icon effects;illusion"
 
70
 
 
71
echo ""
 
72
echo "le th�me a �t� mis � jour."
 
73
exit 0