blob: 99a63a9b201045ab1174e89a250e78324f7721d8 (
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
|
#!/bin/sh
echo "#################### common-wayland.post ##################"
# add users to display group
for user in alice bob carol guest developer owner; do
if generic_base_user_exists $user; then
/usr/sbin/groupmod -A $user display
fi
done
#{ Add installed apps for tizen to launcher if not present
dst="/usr/share/applications/tizen/launcher.conf"
if [ -w "$dst" ] ; then
ls /usr/share/applications/tizen/*.desktop \
| while read src; do
grep "$src" "$dst" \
|| { [ ! -r "$src" ] || echo "$src" >> "$dst" ; }
done
fi
#}
# tag the background image with the current snapshot id
/usr/bin/mark_image.py /opt/share/settings/Wallpapers/home_001.png "Tizen Common: @BUILD_ID@" ffff70 10 60 95 70
|