Increase dunst height, tweaks to some init scripts, and add .Xauthority to remove first boot errors
This commit is contained in:
parent
17477c97ca
commit
35bf1a828d
0
base/.Xauthority
Normal file
0
base/.Xauthority
Normal file
@ -29,7 +29,7 @@
|
||||
# the top and down respectively.
|
||||
# The width can be negative. In this case the actual width is the
|
||||
# screen width minus the width defined in within the geometry option.
|
||||
geometry = "600x25+100+50"
|
||||
geometry = "600x40+100+50"
|
||||
|
||||
# Show how many messages are currently hidden (because of geometry).
|
||||
indicate_hidden = yes
|
||||
|
@ -1,24 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE fontconfig SYSTEM "fonts.dtd">
|
||||
<fontconfig>
|
||||
<match target="font">
|
||||
<!-- <edit mode="assign" name="hinting" > -->
|
||||
<!-- <bool>true</bool> -->
|
||||
<!-- </edit> -->
|
||||
<!-- <edit mode="assign" name="hintstyle" > -->
|
||||
<!-- <const>hintslight</const> -->
|
||||
<!-- </edit> -->
|
||||
<!-- <edit mode="assign" name="rgba" > -->
|
||||
<!-- <const>rgb</const> -->
|
||||
<!-- </edit> -->
|
||||
<edit mode="assign" name="antialias" >
|
||||
<bool>true</bool>
|
||||
</edit>
|
||||
<!-- <edit mode="assign" name="lcdfilter"> -->
|
||||
<!-- <const>lcddefault</const> -->
|
||||
<!-- </edit> -->
|
||||
</match>
|
||||
|
||||
<alias>
|
||||
<family>serif</family>
|
||||
<prefer>
|
||||
|
@ -6,9 +6,10 @@
|
||||
|
||||
export XDG_CONFIG_HOME="$HOME/.config"
|
||||
|
||||
[ -d /sbin ] && PATH="$PATH:/sbin"
|
||||
[ -d /usr/sbin ] && PATH="$PATH:/usr/sbin"
|
||||
[ -d "$HOME/bin" ] && PATH="$HOME/bin:$PATH"
|
||||
# add additional directories to PATH
|
||||
for dir in /sbin /usr/sbin "$HOME/bin"; do
|
||||
[ -d "$dir" ] && PATH="$dir:$PATH"
|
||||
done
|
||||
|
||||
# compton
|
||||
al-compositor --start &
|
||||
|
@ -75,7 +75,7 @@ else
|
||||
*Lock) i3lock-fancy ;;
|
||||
*Reboot) systemctl reboot ;;
|
||||
*Shutdown) systemctl -i poweroff ;;
|
||||
*Logout) session-logout || pkill -15 -t tty"$XDG_VTNR" Xorg ;;
|
||||
*Logout) session-logout >/dev/null 2>&1 || pkill -15 -t tty"$XDG_VTNR" Xorg ;;
|
||||
esac
|
||||
;;
|
||||
*)
|
||||
|
Reference in New Issue
Block a user