I'm generally busy with more than one thing to do during the work day. I'd like an easy to customize dialog box that I can specify at the terminal.

An example, when I'm done with a background copy in a terminal (In X11), I'd like it to pop up with "copy complete".

Something like cp alpha bravo && foobar "copy complete"

Has anyone come across something like this?

link|improve this question
feedback

3 Answers

up vote 4 down vote accepted

look at the documentation for cdialog dialog and kdialog

link|improve this answer
I have used kdialog in this exact fashion, btw. And for user input and further script control. – maxwellb Jun 24 '10 at 5:06
Awesome and easy. kdialog does the trick – bobby Jun 24 '10 at 5:19
feedback

In case someone is looking for this functionality for Gnome, there's Zenity.

link|improve this answer
feedback

For the matter, in case that you want the old-style command prompt dialog-box prompts like what you get during debian installation, you can try ncurses

link|improve this answer
2  
Technically true, but ncurses is just a library that you can use from a C program. It's not something you can invoke from a terminal; you'd need to write a program (probably in C) to use it. A tool like dialog is more appropriate here. – sleske Jun 24 '10 at 9:36
yep i meant dialog. thanks for the clarification. – bubu Jun 24 '10 at 10:34
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.