- #!/bin/bash
- # add local bin to path
- export PATH=/usr/local/bin:$PATH
- # add Xresources symlink if not exists
- [ ! -f "$HOME/.Xresources" ] && ln -s "$HOME/.Xdefaults" "$HOME/.Xresources"
- # fcitx IME support
- export GTK_IM_MODULE=fcitx
- export QT_IM_MODULE=fcitx
- export XMODIFIERS=@im=fcitx
- # if bashrc exists and the terminal has stdin load it
- test -t 0 && . "$HOME/.bashrc"
|