mirror of
https://github.com/LukeSmithxyz/voidrice.git
synced 2026-03-20 01:37:45 +01:00
15 lines
361 B
Bash
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
|