Depado
Depado

Reputation: 4929

Perl - Is there a way to display notifications with some textbox?

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

Answers (1)

ninjalj
ninjalj

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

Related Questions