I try to use fcitx input, but i have not ~/.xinitrc, how i do?
somebody teach me to modify /etc/X11/xinit/xinitrc,but i'm not sure where should i insert fcitx
--------------------------------------
# First try ~/.xinitrc
if [ -f "$HOME/.xinitrc" ]; then
XINITRC="$HOME/.xinitrc"
exec /bin/sh "$HOME/.xinitrc"
# If not present, try the system default
elif [ -n "`/etc/X11/chooser.sh`" ]; then
exec "`/etc/X11/chooser.sh`"
# Failsafe
else
# start some nice programs
twm &
xclock -geometry 50x50-1+1 &
xterm -geometry 80x50+494+51 &
xterm -geometry 80x20+494-0 &
fcitx & //should i put it here??
exec xterm -geometry 80x66+0+0 -name login
fi
----------------------------------------------------