Bug#743015: xinit does not handle starting X correctly

2014-04-15 Thread Vladimir K
I've tweaked /etc/X11/Xsession.d/90consolekit to do nothing if systemd is pid 1, and now I am able to edit connections in nm-connection-editor. added this line: readlink -f $(ps -o cmd -p 1) 2> /dev/null | grep -q systemd && SYSTEMD=1 and changed this line: if [ -z "$GDMSESSION" ] && [ -x "$CK_L

Bug#743015: xinit does not handle starting X correctly

2014-04-14 Thread Vladimir K
Archlinux uses this xserverrc: #!/bin/sh if [ -z "$XDG_VTNR" ]; then exec /usr/bin/X -nolisten tcp "$@" else exec /usr/bin/X -nolisten tcp "$@" vt$XDG_VTNR fi -- To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.deb

Bug#743015: xinit does not handle starting X correctly

2014-04-14 Thread Vladimir K
I've tested the change. When using startx, X session is correctly started at the same VT, but some features are missing. I.e. I can not edit Network manager connections. (works when I login with lightdm) $ loginctl show-session $XDG_SESSION_ID Id=c9 Timestamp=Mon 2014-04-14 18:41:16 MSK Timest

Bug#743015: xinit does not handle starting X correctly

2014-03-31 Thread Paul Jones
Sure, what I'm really suggesting is a change in defaults. Systemd is now the default init system. Currently, without this xserverrc, startx by default breaks your systemd session. This change has been made on other distributions that already have changed their default init systems to systemd. The

Bug#743015: xinit does not handle starting X correctly

2014-03-31 Thread Julien Cristau
Control: tag -1 moreinfo Control: severity -1 wishlist On Sat, Mar 29, 2014 at 21:08:38 -0400, Paul Jones wrote: > Package: xinit > > Version: 1.3.2-1 > > Severity: Normal > > When you start X with startx, it may start X on a different tty from where > you logged in for that session. This woul

Processed: Re: Bug#743015: xinit does not handle starting X correctly

2014-03-31 Thread Debian Bug Tracking System
Processing control commands: > tag -1 moreinfo Bug #743015 [xinit] xinit does not handle starting X correctly Added tag(s) moreinfo. > severity -1 wishlist Bug #743015 [xinit] xinit does not handle starting X correctly Severity set to 'wishlist' from 'normal' -- 743015: http://bugs.debian.org/cg

Bug#743015: xinit does not handle starting X correctly

2014-03-29 Thread Paul Jones
Package: xinit Version: 1.3.2-1 Severity: Normal When you start X with startx, it may start X on a different tty from where you logged in for that session. This would cause the systemd session to break. This fix for this is to modify the existing /etc/X11/xinit/xserverrc the way Arch does. My