Alignment is good
This commit is contained in:
parent
022859b987
commit
a60f049035
1 changed files with 5 additions and 5 deletions
10
xinitrc
10
xinitrc
|
@ -8,10 +8,10 @@ usermodmap="$HOME/.config/Xmodmap" ; [ -f "$usermodmap" ] && xmodmap "$u
|
|||
|
||||
|
||||
xset b off # don't beep! that's annoying as hell
|
||||
xset r rate 170 40 # wait 170 before repeating, 40 chars/second
|
||||
xset r rate 170 40 # wait 170 ms before repeating, 40 chars/second
|
||||
|
||||
|
||||
# fav terminal. it's lightweight (always starts instantly) and isn't as peculiar to configure as urxvt (doesn't look as ugly as xterm by default)
|
||||
# fav terminal. it's lightweight (always starts instantly) and isn't as peculiar to configure as urxvt (it doesn't look as ugly as xterm by default)
|
||||
export TERMINAL=xfce4-terminal
|
||||
|
||||
|
||||
|
@ -20,14 +20,14 @@ export TERMINAL=xfce4-terminal
|
|||
|
||||
# allow to very easily choose a desktop environment without changing this file: do e.g. `DE_CHOICE=kde startx` to choose KDE
|
||||
case "$DE_CHOICE" in
|
||||
awesome) exec awesome; ;;
|
||||
awesome) exec awesome; ;;
|
||||
xfce) exec startxfce4; ;;
|
||||
kde) exec startkde; ;;
|
||||
kde) exec startkde; ;;
|
||||
|
||||
i3)
|
||||
XDG_CONFIG_HOME=$HOME/.config
|
||||
compton --config $XDG_CONFIG_HOME/compton/config & # compositor
|
||||
dunst -config $XDG_CONFIG_HOME/dunst/dunstrc & # notification daemon
|
||||
dunst -config $XDG_CONFIG_HOME/dunst/dunstrc & # notification daemon
|
||||
exec i3
|
||||
;;
|
||||
|
||||
|
|
Loading…
Reference in a new issue