13 lines
346 B
Bash
13 lines
346 B
Bash
export PATH="$PATH:/home/livie/.cargo/bin"
|
|
# Created by `pipx` on 2023-06-17 16:56:49
|
|
export PATH="$PATH:/home/livie/.local/bin"
|
|
|
|
# input method
|
|
if command -v fcitx5 >/dev/null 2>&1; then
|
|
export GTK_IM_MODULE=fcitx
|
|
export QT_IM_MODULE=fcitx
|
|
export XMODIFIERS=@im=fcitx
|
|
export SDL_IM_MODULE=fcitx
|
|
export GLFW_IM_MODULE=ibus
|
|
fi
|