vimrc: Using only the essential plugins .bash_profile: Using uim for multilingual input, which gets loaded in bash_profile i3config and picom config: Changed font size in i3 config Added transparency for commandline dictionary in picom Signed-off-by: Dhanus M Lal <dhanusmlal@gmail.com>
16 lines
242 B
Bash
16 lines
242 B
Bash
#
|
|
# ~/.bash_profile
|
|
#
|
|
|
|
[[ -f ~/.bashrc ]] && . ~/.bashrc
|
|
|
|
if [ $(basename $(exec tty)) == tty1 ]
|
|
then
|
|
export GTK_IM_MODULE='uim'
|
|
export QT_IM_MODULE='uim'
|
|
uim-xim &
|
|
export XMODIFIERS='@im=uim'
|
|
|
|
exec startx >/dev/null 2>&1
|
|
fi
|