You are not logged in.
Pages: 1
deleted
Last edited by Misbah (2012-02-14 05:57:31)
Offline
.xinitrc is the init script for startx, the script where you place what programs you want to run before starting X. So, you're not supposed to run .xinitrc, you're supposed to run startx.
Offline
deleted
Last edited by Misbah (2012-02-14 05:57:12)
Offline
welcome to arch I have the exact feeling 3 months ago
Archlinux on Compaq Presario v5000 laptop
Offline
You can use gdm or kdm in your daemons section of the rc.conf file so you do not need to startx after a boot.
Offline
deleted
Last edited by Misbah (2012-02-14 05:57:03)
Offline
I used to use gdm all the time as well until I found out about slim. It's a very simple login manager and doesn't have anywhere near the dependencies of gdm. http://wiki.archlinux.org/index.php/SLIM
Time is a great teacher, but unfortunately it kills all its pupils ... - Louis Hector Berlioz
Offline
i was going to use a graphic login... but having a simple script i found on this forum works just as well.
add this to your .bash_profile in ~/
if [[ -z "$DISPLAY" ]] && [[ $(tty) = /dev/vc/1 ]]; then
xinit
logout
fi
it starts X once you login on virtual console 1
its pretty cool - maybe someday i'll check out SLIM...
Offline
Pages: 1