ambevar-dotfiles/.xprofile

36 lines
1.2 KiB
Plaintext
Raw Normal View History

#!/bin/sh
## This file is sourced by some DM and should not contain any desktop execution.
2015-10-19 15:15:12 +02:00
## Internet browsers. They need X to run.
for i in qutebrowser dwb luakit chromium google-chrome; do
command -v $i >/dev/null 2>&1 && export BROWSER=$i && break
done
## X resources for URxvt et al.
[ -f "$HOME/.Xresources" ] && xrdb -merge "$HOME/.Xresources"
## Dynamic values. We could have defined the value from a variable in
## .Xresources which we would have set with the preprocessor. But the login
## manager may merge after sourcing this file without setting the preprocessor
## variable, thus overwriting the value with the variable name.
echo "URxvt.url-select.launcher: $BROWSER" | xrdb -merge
## Load custom keymap and configure input devices.
2014-03-16 21:49:34 +01:00
xkbcomp -I"$HOME/.xkb" "$HOME/.xkb/usim.xkb" $DISPLAY
2015-10-19 15:15:12 +02:00
numlockx on
synclient TouchpadOff=1
if [ "$OSTYPE" = "linux-gnu" ] ; then
## Set sound volume.
[ -n "$(amixer 2>/dev/null | grep PCM)" ] && amixer set PCM 100%
## External device auto-mounting.
command -v udiskie >/dev/null 2>&1 && udiskie &
fi
2015-10-19 15:15:12 +02:00
## This env variable is used by some programs (e.g. ranger, awesome) to get the
## terminal executable name.
export TERMCMD="urxvt"
2013-09-07 19:18:14 +02:00
2015-10-19 15:15:12 +02:00
## Hook. Should be sourced last.
2013-09-07 19:18:14 +02:00
[ -f ~/.xprofile_hook ] && . ~/.xprofile_hook