improve gitignore
[~bandali/configs] / x / .xinitrc
CommitLineData
3aeeb20d
AB
1#!/bin/sh
2#
3# ~/.xinitrc
4#
5# Executed by startx (run your window manager from here)
6
7if [ -d /etc/X11/xinit/xinitrc.d ]; then
8 for f in /etc/X11/xinit/xinitrc.d/*; do
9 [ -x "$f" ] && . "$f"
10 done
11 unset f
12fi
13
14xrdb -merge ~/.Xresources
15xsetroot -cursor_name left_ptr & # set the cursor icon
8c17e1b6 16#feh --bg-scale ~/Pictures/the-witcher-3-wild-hunt-10.jpg
3aeeb20d
AB
17xset +fp /usr/share/fonts/local
18xset +fp ~/.fonts
19xset fp rehash
20xset b off
21xrdb -merge ~/.theme/base16-thewildhunt.dark.xresources
22compton &
23#xbacklight -set `xbacklight -get`
24synclient TapButton2=3
25synclient TapButton3=2
26synclient HorizTwoFingerScroll=1
27synclient VertScrollDelta=-237
28synclient HorizScrollDelta=-237
8c17e1b6 29sxhkd &
3aeeb20d
AB
30
31# screen powersave
32xset +dpms
33xset dpms 0 0 300
34
35# exec gnome-session
36# exec startkde
8c17e1b6 37exec startxfce4
3aeeb20d
AB
38# ...or the Window Manager of your choice
39
40sxhkd &
41source ~/.profile
8c17e1b6 42#exec bspwm