The source project of this merge request has been removed.
startx: use uname -n instead of hostname
startx
calls hostname
to obtain the hostname
, but this is not defined by POSIX, so not guaranteed to work. The script already does some checks to deal with different hostname
implementations on Linux.
Using uname -n
instead fixes this in a portable way.
Fixes #18 (closed)