mirror of
https://github.com/vbrandl/dotfiles
synced 2024-11-23 08:23:27 +01:00
16 lines
280 B
Plaintext
16 lines
280 B
Plaintext
|
#!/bin/bash
|
||
|
# ~/.xinitrc
|
||
|
|
||
|
if [ -d /etc/X11/xinit/xinitrc.d ] ; then
|
||
|
for f in /etc/X11/xinit/xinitrc.d/?*.sh ; do
|
||
|
[ -x "$f" ] && . "$f"
|
||
|
done
|
||
|
unset f
|
||
|
fi
|
||
|
|
||
|
[[ -f ~/.Xresources ]] && xrdb -merge -I$HOME ~/.Xresources
|
||
|
|
||
|
start-pulseaudio-x11
|
||
|
# exec startxfce4
|
||
|
exec i3
|