This repository has been archived on 2024-03-28. You can view files and clone it, but cannot push or open issues or pull requests.
dotfiles/env/x/xprofile

25 lines
395 B
Plaintext
Raw Normal View History

2017-02-03 14:36:58 -06:00
#!/bin/sh
if [ -f ~/.fehbg ]; then
~/.fehbg &
fi
source "$DOTFILES_PATH/env/x/xloadresources"
source "$DOTFILES_PATH/variables.bash"
# keyrepeat settings
xset r rate 250 80 &
# no screen blanking
xset -dpms &
xset s noblank &
xset s off &
if [ -d "/usr/lib/nvidia" ]; then
export LD_LIBRARY_PATH=/usr/lib/nvidia
fi
if [ -f "$HOME/.xprofile.env" ]; then
source "$HOME/.xprofile.env"
fi