diff options
-rwxr-xr-x | perl-install/standalone/drakxtv | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/perl-install/standalone/drakxtv b/perl-install/standalone/drakxtv index 7662d9689..8474e2187 100755 --- a/perl-install/standalone/drakxtv +++ b/perl-install/standalone/drakxtv @@ -63,9 +63,10 @@ sub scan4channels { system( (($use_X ) ? "xvt -T '"._("Scanning for TV channels")." ...' -e ":"") . "scantv -n $norm -f $ftable_id -o ~/.xawtv".(($use_X )?"":" &>~/tmp/scantv.log")); + print "Now, you can run xawtv !\n"; $in->exit(0); }, - ) or $in->exit(0); + ); $in->exit(0); } @@ -73,6 +74,7 @@ sub scan4channels { scan4channels('interactive'->vnew()) if grep { $_->{media_type} eq 'MULTIMEDIA_VIDEO' } detect_devices::probeall(1); + # TODO : # - offer to sort channels after # - try to figure out country from locale ? @@ -80,3 +82,4 @@ scan4channels('interactive'->vnew()) # - use Video-Capture-V4l-0.221 ? # - reput kwintv and test it ? => still buggy it seems ... # - configure kwintv and zapping ? => they've already wizards :-( +# - check than scantv is there |