diff options
author | InigoGutierrez <inigogf.95@gmail.com> | 2019-09-12 17:12:57 +0200 |
---|---|---|
committer | InigoGutierrez <inigogf.95@gmail.com> | 2019-09-12 17:12:57 +0200 |
commit | b2c6ecfb7127e8df7c229997ec46c5653ffc5db3 (patch) | |
tree | 7914d02c03a66dc59a802f78545e27f710870457 | |
parent | 1fe04230b2641ff2328ade3ae5df64eea5bb57fe (diff) | |
download | scripts-b2c6ecfb7127e8df7c229997ec46c5653ffc5db3.tar.gz scripts-b2c6ecfb7127e8df7c229997ec46c5653ffc5db3.zip |
Added a general script to be run by window managers at startup.
-rwxr-xr-x | xinit.sh | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/xinit.sh b/xinit.sh new file mode 100755 index 0000000..13086d8 --- /dev/null +++ b/xinit.sh @@ -0,0 +1,11 @@ +#!/bin/sh + +# To be run by the window manager or desktop environment when starting an X session +dunst & +xrdb ~/.Xresources +setxkbmap -layout es -option caps:swapescape +xset -b +unclutter --idle 1 & +touchpad.sh +feh --bg-max ~/images/wallpapers/bg_* +urxvt -e tmux new -s main & |