.bash_profile 366 B

12345678910111213141516
  1. #!/bin/bash
  2. # add local bin to path
  3. export PATH=/usr/local/bin:$PATH
  4. # fcitx IME support
  5. export GTK_IM_MODULE=fcitx
  6. export QT_IM_MODULE=fcitx
  7. export XMODIFIERS=@im=fcitx
  8. # specify wayland for applications like steam
  9. export MOZ_ENABLE_WAYLAND=1
  10. export SDL_VIDEODRIVER="wayland"
  11. # if bashrc exists and the terminal has stdin load it
  12. test -t 0 && . "$HOME/.bashrc"