-
Notifications
You must be signed in to change notification settings - Fork 0
/
.xinitrc
executable file
·50 lines (31 loc) · 1.19 KB
/
.xinitrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
#!/bin/sh
#
# ~/.xinitrc
#
# Executed by startx (run your window manager from here)
if [ -d /etc/X11/xinit/xinitrc.d ]; then
for f in /etc/X11/xinit/xinitrc.d/*; do
[ -x "$f" ] && . "$f"
done
unset f
fi
[[ -f ~/.Xresources ]] && xrdb -merge ~/.Xresources
export TERMINAL="urxvtc&" # can cause lag ... under heavy load ... or not?
#export TERMINAL="urxvt"
# exec gnome-session
# exec startkde
# exec startxfce4
# ...or the Window Manager of your choice
#/usr/bin/feh --bg-tile /usr/local/share/background-images/arch_dtbg.png
#/usr/bin/feh --bg-max /usr/local/share/background-images/arch_dtbg.png
#/usr/bin/feh --bg-fill /usr/local/share/background-images/arch_dtbg.png
#/usr/bin/feh --bg-scale /usr/local/share/background-images/arch_dtbg.png
/usr/bin/numlockx on &
#/usr/bin/xscreensaver -no-splash &
#dbus-launch /usr/bin/nm-applet &
#/usr/bin/urxvtd -q -o -f # performs poorly under heavy system load
/usr/bin/feh --bg-fill ~/.desktop/background-images/nova.jpg&
exec i3 -V >> ~/.i3/i3log 2>&1
#/usr/bin/rofi -dmenu &
exec ck-launch-session dbus-launch --sh-syntax --exit-with-session i3 -V >> ~/.i3/i3log 2>&1
#exec dbus-launch --sh-syntax --exit-with-session i3 -V >> ~/.i3/i3log 2>&1