From 1c91c6efa1db9bde5d7f348e7fb8823b251a0127 Mon Sep 17 00:00:00 2001 From: Thierry Vignaud Date: Sun, 18 Jan 2004 03:06:23 +0000 Subject: initial import of vte based console to get rid of "no menu entry for rxvt" bug --- drakconsole | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100755 drakconsole (limited to 'drakconsole') 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; -- cgit v1.2.1