TIVI-248 & TIVI-267: remove -sharevts option from startx.
[profile/ivi/xorg-x11-server-misc.git] / arm-common / xinitrc
1 #!/bin/sh
2
3 /usr/bin/scim -d
4
5 if [ ! -e /opt/etc/.hib_capturing ]; then
6         /usr/bin/system_server &
7 fi
8
9 # Link .e
10 if [ ! -d ${HOME}/.e ]; then
11         ln -s /opt/home/root/.e ${HOME}/.e
12 fi
13
14 udevadm trigger --subsystem-match=input
15
16 # Remapping the keycodes to our key-symbols
17 if [ -x /usr/bin/xmodmap ]; then
18         if [ -e ~/.Xmodmap ]; then
19                 xmodmap ~/.Xmodmap
20         else
21                 xmodmap /opt/etc/X11/Xmodmap
22         fi
23 fi
24
25 # set dpi
26 if [ -x /usr/bin/xrdb ]; then
27         if [ -e ~/.Xresources ]; then
28                 /usr/bin/xrdb -load -nocpp ~/.Xresources
29         else
30                 /usr/bin/xrdb -load -nocpp /opt/etc/X11/Xresources
31         fi
32 fi
33
34 /usr/bin/enlightenment_start -profile samsung -i-really-know-what-i-am-doing-and-accept-full-responsibility-for-it &