- #!/bin/bash
- # add local bin to path
- export PATH=/usr/local/bin:$PATH
- # fcitx IME support
- export GTK_IM_MODULE=fcitx
- export QT_IM_MODULE=fcitx
- export XMODIFIERS=@im=fcitx
- # specify wayland for applications like steam
- export MOZ_ENABLE_WAYLAND=1
- export SDL_VIDEODRIVER="wayland"
- # if bashrc exists and the terminal has stdin load it
- test -t 0 && . "$HOME/.bashrc"
|