dotfiles/.xprofile

25 lines
562 B
Text
Raw Normal View History

#
# ~/.xprofile (includes ~/.xprofile.local)
#
2018-11-01 22:44:57 +01:00
# Load X resources
[ -f ~/.Xresources ] && xrdb -merge ~/.Xresources
[ -f ~/.Xresources.local ] && xrdb -merge ~/.Xresources.local
2018-11-01 22:44:57 +01:00
2018-11-01 01:25:33 +01:00
# Deactivate screen blanking
xset -dpms s off
2019-02-08 22:32:11 +01:00
# Set background color (as fallback) and wallpaper (if exists)
xsetroot -solid black
2018-11-01 01:25:33 +01:00
[ -f ~/.fehbg ] && sh ~/.fehbg
# Set keyboard layout
setxkbmap us altgr-intl
# Register screen locker
xss-lock -- i3lock -n -eft -i ~/.wallpapers/lockscreen &
# Include host-specific .xprofile
[ -f ~/.xprofile.local ] && source ~/.xprofile.local