Alignment is good

This commit is contained in:
M1dgard 2018-04-08 22:07:55 +02:00
parent 022859b987
commit a60f049035
Signed by untrusted user who does not match committer: midgard
GPG key ID: 511C112F1331BBB4

10
xinitrc
View file

@ -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
;;