.bash_profile 602 B

1234567891011121314151617181920212223
  1. #!/bin/bash
  2. # add local bin to path
  3. export PATH=/usr/local/bin:$PATH
  4. # alias for discord wayland, since it ignores configs
  5. alias discord='discord --enable-features=UseOzonePlatform --ozone-platform=wayland'
  6. # fcitx IME support
  7. export GTK_IM_MODULE=fcitx
  8. export QT_IM_MODULE=fcitx
  9. export XMODIFIERS=@im=fcitx
  10. # specify wayland for applications like steam
  11. export MOZ_ENABLE_WAYLAND=1
  12. export SDL_VIDEODRIVER="wayland"
  13. export XDG_CURRENT_DESKTOP=Unity
  14. # golang override for package behavior
  15. export GO111MODULE=auto
  16. # if bashrc exists and the terminal has stdin load it
  17. test -t 0 && . "$HOME/.bashrc"