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 top and down respectively.
|
||||||
# The width can be negative. In this case the actual width is the
|
# The width can be negative. In this case the actual width is the
|
||||||
# screen width minus the width defined in within the geometry option.
|
# 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).
|
# Show how many messages are currently hidden (because of geometry).
|
||||||
indicate_hidden = yes
|
indicate_hidden = yes
|
||||||
|
@ -1,24 +1,6 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<!DOCTYPE fontconfig SYSTEM "fonts.dtd">
|
<!DOCTYPE fontconfig SYSTEM "fonts.dtd">
|
||||||
<fontconfig>
|
<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>
|
<alias>
|
||||||
<family>serif</family>
|
<family>serif</family>
|
||||||
<prefer>
|
<prefer>
|
||||||
|
@ -6,9 +6,10 @@
|
|||||||
|
|
||||||
export XDG_CONFIG_HOME="$HOME/.config"
|
export XDG_CONFIG_HOME="$HOME/.config"
|
||||||
|
|
||||||
[ -d /sbin ] && PATH="$PATH:/sbin"
|
# add additional directories to PATH
|
||||||
[ -d /usr/sbin ] && PATH="$PATH:/usr/sbin"
|
for dir in /sbin /usr/sbin "$HOME/bin"; do
|
||||||
[ -d "$HOME/bin" ] && PATH="$HOME/bin:$PATH"
|
[ -d "$dir" ] && PATH="$dir:$PATH"
|
||||||
|
done
|
||||||
|
|
||||||
# compton
|
# compton
|
||||||
al-compositor --start &
|
al-compositor --start &
|
||||||
|
@ -75,7 +75,7 @@ else
|
|||||||
*Lock) i3lock-fancy ;;
|
*Lock) i3lock-fancy ;;
|
||||||
*Reboot) systemctl reboot ;;
|
*Reboot) systemctl reboot ;;
|
||||||
*Shutdown) systemctl -i poweroff ;;
|
*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
|
esac
|
||||||
;;
|
;;
|
||||||
*)
|
*)
|
||||||
|
Reference in New Issue
Block a user