[24251] in Source-Commits
/svn/athena r23849 - trunk/debathena/debathena/xsession/debian
daemon@ATHENA.MIT.EDU (Geoffrey Thomas)
Sun Jun 14 22:38:42 2009
Date: Sun, 14 Jun 2009 22:38:32 -0400
From: Geoffrey Thomas <geofft@MIT.EDU>
Message-Id: <200906150238.n5F2cWpp029182@drugstore.mit.edu>
To: source-commits@mit.edu
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Author: geofft
Date: 2009-06-14 22:38:31 -0400 (Sun, 14 Jun 2009)
New Revision: 23849
Modified:
trunk/debathena/debathena/xsession/debian/changelog
trunk/debathena/debathena/xsession/debian/xsession.tcsh
Log:
In xsession:
* Give the xconsole code half a chance of working.
Modified: trunk/debathena/debathena/xsession/debian/changelog
===================================================================
--- trunk/debathena/debathena/xsession/debian/changelog 2009-06-14 20:52:04 UTC (rev 23848)
+++ trunk/debathena/debathena/xsession/debian/changelog 2009-06-15 02:38:31 UTC (rev 23849)
@@ -1,3 +1,9 @@
+debathena-xsession (1.9.1) unstable; urgency=low
+
+ * Give the xconsole code half a chance of working.
+
+ -- Geoffrey Thomas <geofft@mit.edu> Sun, 14 Jun 2009 22:33:30 -0400
+
debathena-xsession (1.9) unstable; urgency=low
* Add a new GDM session for logging in without customizations, as well
Modified: trunk/debathena/debathena/xsession/debian/xsession.tcsh
===================================================================
--- trunk/debathena/debathena/xsession/debian/xsession.tcsh 2009-06-14 20:52:04 UTC (rev 23848)
+++ trunk/debathena/debathena/xsession/debian/xsession.tcsh 2009-06-15 02:38:31 UTC (rev 23849)
@@ -9,8 +9,8 @@
# Horrible work-around for the fact that GDM can't read the
# .xsession-errors file it tries to write.
if ( "$DEBATHENA_HOME_TYPE" == "afs" ) then
- xconsole -daemon -file "$HOME/.xsession-errors"
- XCONSOLE=$!
+ xterm -rightbar -sb -fn 9x18 -T ".xsession-errors" -e tail -n +1 -f "$HOME/.xsession-errors" &
+ set XCONSOLE=$!
endif
set initdir=/usr/lib/init
@@ -53,7 +53,7 @@
endif
# If we got this far, then there were no errors that the user /really/
-# needed to see, so get rid of the ugly xconsole
+# needed to see, so get rid of the ugly xterm
if ( "$DEBATHENA_HOME_TYPE" == "afs" ) then
kill $XCONSOLE
endif