List soundcards
[mirrors/Programs.git] / perl / curses / dialog.pl
CommitLineData
21c4e167
H
1#!/usr/bin/env perl
2
3use UI::Dialog;
4 my $d = new UI::Dialog ( backtitle => 'backtitle', title => 'title',
5 #height => 20, width => 65 , listheight => 5,
6 order => [ 'CDialog', 'WhipTail', 'ASCII', 'Zenity', 'XDialog' ] );
7
8 $d->msgbox( title => 'Welcome!', text => 'Welcome one and all!' );
9 my $text = $d->fselect( path => '/tmp' );
10
This page took 0.152769 seconds and 4 git commands to generate.