19 lines
448 B
Bash
19 lines
448 B
Bash
#!/bin/sh
|
|
#
|
|
# ~/.xinitrc
|
|
#
|
|
# Executed by startx (run your window manager from here)
|
|
|
|
[ -f /etc/profile ] && . /etc/profile
|
|
|
|
if [ -d /etc/X11/xinit/xinitrc.d ]; then
|
|
for f in /etc/X11/xinit/xinitrc.d/*; do
|
|
[ -x "$f" ] && . "$f"
|
|
done
|
|
unset f
|
|
fi
|
|
|
|
# ...or the Window Manager of your choice
|
|
#exec ck-launch-session dbus-launch --exit-with-session startxfce4
|
|
exec ck-launch-session ssh-agent dbus-launch --exit-with-session i3 --force-xinerama
|