* Removed include/iso items since they've been integrated into the new scripts * Moved include/live/* to include/ since there's only one "include" folder now
13 lines
355 B
Bash
13 lines
355 B
Bash
setterm -blank 0 -powerdown 0
|
|
if [ "$(fgconsole 2>/dev/null)" -eq "1" ]; then
|
|
if fgrep -q "i3" /proc/cmdline; then
|
|
sed -i -r 's/#(own_window_type override)/\1/' ~/.conkyrc
|
|
sed -i -r 's/openbox-session/i3/' ~/.xinitrc
|
|
fi
|
|
if ! fgrep -q "nox" /proc/cmdline; then
|
|
startx >/dev/null
|
|
else
|
|
hw-diags cli
|
|
fi
|
|
fi
|
|
|