summaryrefslogtreecommitdiffstats
path: root/perl-install/standalone/drakxtv
diff options
context:
space:
mode:
authorThierry Vignaud <tvignaud@mandriva.org>2002-02-26 14:45:50 +0000
committerThierry Vignaud <tvignaud@mandriva.org>2002-02-26 14:45:50 +0000
commit18e80d01aa28373abe07527fe7ffb80b431798dd (patch)
tree735c8f4a00c4eaec712ad177f3d374f406fde882 /perl-install/standalone/drakxtv
parent21781933f1fc4590548c29084def939bd912d6cd (diff)
downloaddrakx-backup-do-not-use-18e80d01aa28373abe07527fe7ffb80b431798dd.tar
drakx-backup-do-not-use-18e80d01aa28373abe07527fe7ffb80b431798dd.tar.gz
drakx-backup-do-not-use-18e80d01aa28373abe07527fe7ffb80b431798dd.tar.bz2
drakx-backup-do-not-use-18e80d01aa28373abe07527fe7ffb80b431798dd.tar.xz
drakx-backup-do-not-use-18e80d01aa28373abe07527fe7ffb80b431798dd.zip
use "xvt -T" rather than "xvt --title": now not only we support rxvt
and xterm but konsole too. the only one missing is gnome-terminal which has -t but not -T
Diffstat (limited to 'perl-install/standalone/drakxtv')
-rwxr-xr-xperl-install/standalone/drakxtv2
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/standalone/drakxtv b/perl-install/standalone/drakxtv
index d4b7e83f0..7662d9689 100755
--- a/perl-install/standalone/drakxtv
+++ b/perl-install/standalone/drakxtv
@@ -61,7 +61,7 @@ sub scan4channels {
# Note that this'll be broken if/when we implement interactive_qt
my $use_X =$in->isa('interactive_gtk') && -x "/usr/X11R6/bin/xvt";
system( (($use_X ) ?
- "xvt -title '"._("Scanning for TV channels")." ...' -e ":"")
+ "xvt -T '"._("Scanning for TV channels")." ...' -e ":"")
. "scantv -n $norm -f $ftable_id -o ~/.xawtv".(($use_X )?"":" &>~/tmp/scantv.log"));
$in->exit(0);
},