blob: b934078044bbabe5596b09396624df0f7ee6527f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#!/bin/sh
export PATH="$PATH:$HOME/scripts:/usr/games"
export EDITOR='vim'
export BROWSER='firefox'
# Launcher for clipmenu
export CM_LAUNCHER=rofi
export QT_STYLE_OVERRIDE=gtk2
# ibus setup
export PATH="$PATH:$HOME/scripts:/usr/games"
export GTK_IM_MODULE=ibus
export XMODIFIERS=@im=ibus
export QT_IM_MODULE=ibus
ibus-daemon -drx
|