Reputation: 4929
Here is my problem : I'm trying to make skype more interactive with my gnome desktop environment. So I want to use Perl to do that. Is there a way, using libnotify, to display a textbox (a field I can fill or type in) ?
Upvotes: 2
Views: 596
Reputation: 43688
Gnome provides zenity to create dialogs from scripts:
zenity --entry --text "foo" --entry-text "bar"
KDE provides kdialog. Older Gnome provided gdialog. There is also xdialog.
Upvotes: 3