Skip to content

Instantly share code, notes, and snippets.

@7Z0nE
Last active May 29, 2019 13:16
Show Gist options
  • Save 7Z0nE/acdaa333b24f3529e720d7c136ac1483 to your computer and use it in GitHub Desktop.
Save 7Z0nE/acdaa333b24f3529e720d7c136ac1483 to your computer and use it in GitHub Desktop.
#!/bin/sh
#https://gist.github.com/7Z0nE/acdaa333b24f3529e720d7c136ac1483
# start some nice programs
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
# start some nice programs
if [ -d $HOME/.config/xinitrc.d ] ; then
for f in $HOME/.config/xinitrc.d/?*.sh ; do
[ -x "$f" ] && . "$f"
done
unset f
fi
exec i3
#exec gnome-session
#exec kwin
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment