summaryrefslogtreecommitdiffstats
path: root/meta-moblin/packages/matchbox-netbook-session/matchbox-session-netbook_0.1.bb
blob: 2a5827642dfe1c2964ccda10fd769ff40d95e32b (plain)
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
DESCRIPTION = "Custom MB session files for poky"
LICENSE = "GPL"
SECTION = "x11"
RDEPENDS = "formfactor gtk-engines initscripts matchbox-session"
PR = "r19"

# This package is architecture specific because the session script is modified
# based on the machine architecture.
PACKAGE_ARCH = "${MACHINE_ARCH}"

SRC_URI = "file://session"
S = "${WORKDIR}"

do_install() {
	install -d ${D}/${sysconfdir}/matchbox
	install ${S}/session ${D}/${sysconfdir}/matchbox/session
        chmod +x ${D}/${sysconfdir}/matchbox/session
}

pkg_postinst_${PN} () {
#!/bin/sh -e
if [ "x$D" != "x" ]; then
    exit 1
fi

. ${sysconfdir}/init.d/functions


# Theme
gconftool-2 --config-source=xml::$D${sysconfdir}/gconf/gconf.xml.defaults \
            --direct --type string -s \
            /apps/metacity/general/theme "Moblin-Netbook"

gconftool-2 --config-source=xml::$D${sysconfdir}/gconf/gconf.xml.defaults \
            --direct --type string -s \
            /apps/metacity/general/button_layout ":close"

gconftool-2 --config-source=xml::$D${sysconfdir}/gconf/gconf.xml.defaults \
            --direct --type string -s \
            /desktop/gnome/interface/gtk_theme "Moblin-Netbook"

gconftool-2 --config-source=xml::$D${sysconfdir}/gconf/gconf.xml.defaults \
            --direct --type string -s \
            /desktop/gnome/interface/icon_theme "moblin"

gconftool-2 --config-source=xml::$D${sysconfdir}/gconf/gconf.xml.defaults \
            --direct --type string -s \
            /desktop/gnome/peripherals/mouse/cursor_theme "moblin"

gconftool-2 --config-source=xml::$D${sysconfdir}/gconf/gconf.xml.defaults \
            --direct --type string -s \
            /desktop/gnome/interface/toolbar_style "icons"

gconftool-2 --config-source=xml::$D${sysconfdir}/gconf/gconf.xml.defaults \
            --direct --type bool -s \
            /desktop/gnome/interface/menus_have_icons false

gconftool-2 --config-source=xml::$D${sysconfdir}/gconf/gconf.xml.defaults \
            --direct --type bool -s \
            /desktop/gnome/interface/buttons_have_icons false

gconftool-2 --config-source=xml::$D${sysconfdir}/gconf/gconf.xml.defaults \
            --direct --type string -s \
            /desktop/gnome/sound/theme_name moblin

# Screen shot
gconftool-2 --config-source=xml::$D${sysconfdir}/gconf/gconf.xml.defaults \
            --direct --type string -s \
            /apps/metacity/global_keybindings/run_command_screenshot \
            "Print"
gconftool-2 --config-source=xml::$D${sysconfdir}/gconf/gconf.xml.defaults \
            --direct --type string -s \
            /apps/metacity/keybinding_commands/command_screenshot \
            "gnome-screenshot"

gconftool-2 --config-source=xml::$D${sysconfdir}/gconf/gconf.xml.defaults \
            --direct --type string -s \
            /apps/metacity/global_keybindings/run_command_window_screenshot \
            "<Alt>Print"
gconftool-2 --config-source=xml::$D${sysconfdir}/gconf/gconf.xml.defaults \
            --direct --type string -s \
            /apps/metacity/keybinding_commands/command_window_screenshot \
            "gnome-screenshot --window"

# Window Actions
gconftool-2 --config-source=xml::$D${sysconfdir}/gconf/gconf.xml.defaults \
            --direct --type string -s \
            /apps/metacity/general/action_double_click_titlebar "none"
gconftool-2 --config-source=xml::$D${sysconfdir}/gconf/gconf.xml.defaults \
            --direct --type string -s \
            /apps/metacity/general/action_middle_click_titlebar "none"
gconftool-2 --config-source=xml::$D${sysconfdir}/gconf/gconf.xml.defaults \
            --direct --type string -s \
            /apps/metacity/general/action_right_click_titlebar "none"


# UX Shell
gconftool-2 --config-source=xml::$D${sysconfdir}/gconf/gconf.xml.defaults \
            --direct --type bool -s \
            /apps/mutter/general/clutter_disabled false

gconftool-2 --config-source=xml::$D${sysconfdir}/gconf/gconf.xml.defaults \
            --direct --type list --list-type string -s \
            /apps/mutter/general/clutter_plugins '[moblin-netbook]'

gconftool-2 --config-source=xml::$D${sysconfdir}/gconf/gconf.xml.defaults \
            --direct --type string -s \
            /desktop/gnome/url-handlers/http/command 'moblin-web-browser %s'

gconftool-2 --config-source=xml::$D${sysconfdir}/gconf/gconf.xml.defaults \
            --direct --type string -s \
            /desktop/gnome/url-handlers/https/command 'moblin-web-browser %s'

gconftool-2 --config-source=xml::$D${sysconfdir}/gconf/gconf.xml.defaults \
            --direct --type string -s \
            /desktop/gnome/background/picture_filename \
            '/usr/share/mutter-moblin/theme/moblin-panel-myzone/toys.jpg'

# Fonts
gconftool-2 --config-source=xml::$D${sysconfdir}/gconf/gconf.xml.defaults \
            --direct --type string -s \
            /desktop/gnome/interface/document_font_name \
            'Liberation Sans 10'

gconftool-2 --config-source=xml::$D${sysconfdir}/gconf/gconf.xml.defaults \
            --direct --type string -s \
            /desktop/gnome/interface/font_name \
            'Liberation Sans 10'

gconftool-2 --config-source=xml::$D${sysconfdir}/gconf/gconf.xml.defaults \
            --direct --type string -s \
            /desktop/gnome/interface/monospace_font_name \
            'Liberation Mono 10'

# Nautilus
gconftool-2 --config-source=xml::$D${sysconfdir}/gconf/gconf.xml.defaults \
            --direct --type bool -s \
            /apps/nautilus/preferences/always_use_browser true

gconftool-2 --config-source=xml::$D${sysconfdir}/gconf/gconf.xml.defaults \
            --direct --type bool -s \
            /apps/nautilus/preferences/exit_with_last_window false

# Do not automount, this is done by g-s-d plugin
gconftool-2 --config-source=xml::$D${sysconfdir}/gconf/gconf.xml.defaults \
            --direct --type bool -s \
            /apps/nautilus/preferences/media_automount false

# And should not open new window whenever media mounted
gconftool-2 --config-source=xml::$D${sysconfdir}/gconf/gconf.xml.defaults \
            --direct --type bool -s \
            /apps/nautilus/preferences/media_automount_open false


gconftool-2 --config-source=xml::$D${sysconfdir}/gconf/gconf.xml.defaults \
            --direct --type bool -s \
            /apps/nautilus/icon_view/labels_beside_icons false

gconftool-2 --config-source=xml::$D${sysconfdir}/gconf/gconf.xml.defaults \
            --direct --type string -s \
            /apps/nautilus/icon_view/default_zoom_level standard

gconftool-2 --config-source=xml::$D${sysconfdir}/gconf/gconf.xml.defaults \
            --direct --type string -s \
            /apps/gnome_settings_daemon/keybindings/power ""

# General
gconftool-2 --config-source=xml::$D${sysconfdir}/gconf/gconf.xml.defaults \
            --direct --type float -s \
            /desktop/gnome/peripherals/mouse/mouse_acceleration 0.8

gconftool-2 --config-source=xml::$D${sysconfdir}/gconf/gconf.xml.defaults \
            --direct --type int -s \
            /desktop/gnome/peripherals/mouse/mouse_threshold 2

#
# The interesting bit - we convert to run the system as the user "pokyuser"
# and setup this user account as needed
#
if [ ! -d /home/pokyuser ]; then
    adduser --disabled-password --ingroup users pokyuser

    # Setup any .skel files
    if [ -d ${sysconfdir}/skel ]; then
        cp -pPR ${sysconfdir}/skel/.[a-zA-Z0-9]* /home/pokyuser/ || /bin/true
        cp -pPR ${sysconfdir}/skel/* /home/pokyuser/ || /bin/true
    fi

    # Move any sample media into this user
    if [ -d ${sysconfdir}/skel-media ]; then
        mv ${sysconfdir}/skel-media/* /home/pokyuser/ || /bin/true
    fi

    chown pokyuser.users -R /home/pokyuser/* || /bin/true
    chown pokyuser.users -R /home/pokyuser/.[a-zA-Z0-9]* || /bin/true

    # Make sure Xorg is suid
    chmod a+s /usr/bin/Xorg

    # Tell X to run as this user
    mkdir -p ${sysconfdir}/X11/
    echo "pokyuser" > ${sysconfdir}/X11/Xusername

    # Add pokyuser to the audio group
    audiousers=`grep ^audio < /etc/group | cut -d ':' -f 4`
    if [ "x$audiousers" == "x" ]; then
        audiousers=pokyuser
    else
        audiousers=$audiousers,pokyuser
    fi
    sed -i -e "s/audio:\(.*\):\(.*\):\(.*\)/audio:\1:\2:$audiousers/" /etc/group

    # Add pokyuser to the video group
    videousers=`grep ^video < /etc/group | cut -d ':' -f 4`
    if [ "x$videousers" == "x" ]; then
        videousers=pokyuser
    else
        videousers=$videousers,pokyuser
    fi
    sed -i -e "s/video:\(.*\):\(.*\):\(.*\)/video:\1:\2:$videousers/" /etc/group
fi

}