renamed files
This commit is contained in:
33
xprofile
Normal file
33
xprofile
Normal file
@@ -0,0 +1,33 @@
|
||||
if [ -d /etc/X11/xinit/xinitrc.d ]; then
|
||||
for f in /etc/X11/xinit/xinitrc.d/*; do
|
||||
[ -x "$f" ] && . "$f"
|
||||
done
|
||||
unset f
|
||||
fi
|
||||
|
||||
# Export variables
|
||||
export EDITOR=vim
|
||||
export BROWSER=opera
|
||||
|
||||
# Start the gpg-agent if not already running
|
||||
if ! pgrep -x -u "${USER}" gpg-agent &> /dev/null; then
|
||||
eval $(gpg-agent --homedir "${HOME}/.gnupg" --daemon)
|
||||
fi
|
||||
|
||||
# Merge X resources
|
||||
xrdb -merge ~/.Xresources
|
||||
|
||||
# Disable monitor blanking
|
||||
xset s off -dpms
|
||||
|
||||
# Set cursor to expected left-pointer
|
||||
xsetroot -cursor_name left_ptr
|
||||
|
||||
# Hide mouse when idle
|
||||
unclutter &
|
||||
|
||||
# Run urxvt daemon
|
||||
urxvtd -q -o -f
|
||||
|
||||
# Start mpd
|
||||
mpd
|
||||
Reference in New Issue
Block a user