blob: 18b8f1d88da11d47e0465bed5cfc48448c2e9aab (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#!/bin/bash
if [ ! "$(grep nox /proc/cmdline)" ]
then
if [ -x /usr/bin/X ]
then
if [ -e /etc/startx -a $(tty) = "/dev/tty1" ];
then
rm -f /etc/startx
##STARTX
[ -f /etc/motd ] && cat /etc/motd
fi
fi
fi
|