summaryrefslogtreecommitdiff
path: root/arm-common/xinitrc
blob: 48fcd97ec4f7a25f4e3c43dd86f021de888390a7 (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
#!/bin/sh

/usr/bin/scim -d &

# Link .e
if [ ! -d ${HOME}/.e ]; then
	ln -s /opt/home/root/.e ${HOME}/.e
fi

# Remapping the keycodes to our key-symbols
if [ -x /usr/bin/xmodmap ]; then
	if [ -e ~/.Xmodmap ]; then
		xmodmap ~/.Xmodmap
	else
		xmodmap /usr/etc/X11/Xmodmap
	fi
fi

# set dpi
if [ -x /usr/bin/xrdb ]; then
	if [ -e ~/.Xresources ]; then
		/usr/bin/xrdb -load -nocpp ~/.Xresources
	else
		/usr/bin/xrdb -load -nocpp /usr/etc/X11/Xresources
	fi
fi

/usr/bin/enlightenment_start -profile samsung -i-really-know-what-i-am-doing-and-accept-full-responsibility-for-it &
/usr/etc/X11/xsetrc &