#!/bin/bash # add local bin to path export PATH=/usr/local/bin:$PATH # alias for discord wayland, since it ignores configs alias discord='discord --enable-features=UseOzonePlatform --ozone-platform=wayland' # 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" export XDG_CURRENT_DESKTOP=Unity # golang override for package behavior export GO111MODULE=auto # if bashrc exists and the terminal has stdin load it test -t 0 && . "$HOME/.bashrc"