aboutsummaryrefslogtreecommitdiffstats
path: root/.xprofile
diff options
context:
space:
mode:
authorDavid Runge <dave@sleepmap.de>2015-03-25 21:23:46 +0100
committerDavid Runge <dave@sleepmap.de>2015-03-25 21:23:46 +0100
commit1a183439ce5e0ab7e1c1686c5f3d4ac8cce6a6ab (patch)
tree0099adf40eeb87a67d0c018c78ea0ca203210798 /.xprofile
parentcbd69c2622b9347dbc7d7a2303d2f9872be3a5f2 (diff)
downloaddotfiles-1a183439ce5e0ab7e1c1686c5f3d4ac8cce6a6ab.tar.gz
dotfiles-1a183439ce5e0ab7e1c1686c5f3d4ac8cce6a6ab.tar.bz2
dotfiles-1a183439ce5e0ab7e1c1686c5f3d4ac8cce6a6ab.tar.xz
dotfiles-1a183439ce5e0ab7e1c1686c5f3d4ac8cce6a6ab.zip
Adding .xprofile (for LightDM), to be sourced when starting X with LightDM. Sets xkbmap, screen and starts a termite Terminal.
Diffstat (limited to '.xprofile')
-rw-r--r--.xprofile11
1 files changed, 11 insertions, 0 deletions
diff --git a/.xprofile b/.xprofile
new file mode 100644
index 0000000..dc372e2
--- /dev/null
+++ b/.xprofile
@@ -0,0 +1,11 @@
+#!/usr/bin/env bash
+
+setxkbmap de &
+
+if [ -x "$HOME/bin/lid-switch-action" ] && [ "$HOSTNAME" = dvzrv ]; then
+ $HOME/bin/lid-switch-action login &
+fi
+
+if [ -x /usr/bin/termite ]; then
+ termite &
+fi