diff options
author | David Runge <dave@sleepmap.de> | 2016-05-08 16:26:47 +0200 |
---|---|---|
committer | David Runge <dave@sleepmap.de> | 2016-05-08 16:26:47 +0200 |
commit | 5ac0d1fbba9d4c79d605da47a2050de9d62739e5 (patch) | |
tree | 134bf6f0ee7454ef6bbb8990ca9bde6e39fe1098 /.xprofile | |
parent | 8ca8512c44387e1c6492f162e0a16ca60ec59367 (diff) | |
download | dotfiles-5ac0d1fbba9d4c79d605da47a2050de9d62739e5.tar.gz dotfiles-5ac0d1fbba9d4c79d605da47a2050de9d62739e5.tar.bz2 dotfiles-5ac0d1fbba9d4c79d605da47a2050de9d62739e5.tar.xz dotfiles-5ac0d1fbba9d4c79d605da47a2050de9d62739e5.zip |
.xprofile: Replacing the lid-switch-action script with setup_screens (autorandr based) script.
Diffstat (limited to '.xprofile')
-rw-r--r-- | .xprofile | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -18,10 +18,12 @@ if [ -x /usr/bin/lxpolkit ]; then /usr/bin/lxpolkit & fi -if [ -x "$HOME/bin/lid-switch-action" ] && [ "$HOSTNAME" = dvzrv ]; then - $HOME/bin/lid-switch-action login & +# setup screens on login using autorandr +if [ -x "$HOME/bin/setup_screens" ]; then + $HOME/bin/setup_screens & fi +# start a termite terminal if [ -x /usr/bin/termite ]; then termite & fi |