voidrice/.xinitrc
2020-04-09 17:22:30 -05:00

15 lines
361 B
Bash

#!/bin/sh
# xinitrc runs automatically when you run startx.
# There are some small but important commands that need to be run when we start
# the graphical environment. Those commands reside in ~/.xprofile because that
# file runs automatically.
[ -f ~/.xprofile ] && . ~/.xprofile
exec i3
# Debug i3
#exec i3 -V >> $HOME/i3log-$(date +'%F-%k-%M-%S') 2>&1