summaryrefslogtreecommitdiffstats
path: root/drakconsole
diff options
context:
space:
mode:
authorThierry Vignaud <tvignaud@mandriva.org>2004-01-18 03:06:23 +0000
committerThierry Vignaud <tvignaud@mandriva.org>2004-01-18 03:06:23 +0000
commit1c91c6efa1db9bde5d7f348e7fb8823b251a0127 (patch)
tree469cd1cf7f7e6497ef7e54c03da1441185598288 /drakconsole
parent78d0fba0adaa5d6b2a5ccd4e771609a09fdf5d20 (diff)
downloadcontrol-center-1c91c6efa1db9bde5d7f348e7fb8823b251a0127.tar
control-center-1c91c6efa1db9bde5d7f348e7fb8823b251a0127.tar.gz
control-center-1c91c6efa1db9bde5d7f348e7fb8823b251a0127.tar.bz2
control-center-1c91c6efa1db9bde5d7f348e7fb8823b251a0127.tar.xz
control-center-1c91c6efa1db9bde5d7f348e7fb8823b251a0127.zip
initial import of vte based console to get rid of "no menu entry for rxvt" bug
Diffstat (limited to 'drakconsole')
-rwxr-xr-xdrakconsole34
1 files changed, 34 insertions, 0 deletions
diff --git a/drakconsole b/drakconsole
new file mode 100755
index 00000000..4a0ff539
--- /dev/null
+++ b/drakconsole
@@ -0,0 +1,34 @@
+#!/usr/bin/perl
+# DrakConsole -- Display Manager chooser
+# Copyright (C) 2003 MandrakeSoft (tvignaud@mandrakesoft.com)
+#
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2, or (at your option)
+# any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+
+use strict;
+use lib qw(/usr/lib/libDrakX);
+
+use standalone; #- warning, standalone must be loaded very first, for 'explanations'
+use ugtk2 qw(:wrappers);
+use Gnome2::Vte;
+
+my $w = ugtk2->new;
+
+$w->{rwindow}->add(my $vte = gtksignal_connect(Gnome2::Vte::Terminal->new,
+ 'child-exited' => sub { ugtk2->exit })
+ );
+$w->{rwindow}->show_all;
+$vte->fork_command("/bin/bash", [ "/bin/bash" ], [ map { "$_=$ENV{$_}" } keys %ENV ], $ENV{PWD}, 0, 0, 0);
+
+$w->main;