Linux Customizable Dialog?

2

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?

bobby

Posted 2010-06-24T05:02:03.597

Reputation: 399

Answers

3

look at the documentation for cdialog dialog and kdialog

maxwellb

Posted 2010-06-24T05:02:03.597

Reputation: 935

I have used kdialog in this exact fashion, btw. And for user input and further script control. – maxwellb – 2010-06-24T05:06:35.097

Awesome and easy. kdialog does the trick – bobby – 2010-06-24T05:19:44.287

2

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

Paused until further notice.

Posted 2010-06-24T05:02:03.597

Reputation: 86 075

0

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

bubu

Posted 2010-06-24T05:02:03.597

Reputation: 9 283

2Technically 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 – 2010-06-24T09:36:33.413

yep i meant dialog. thanks for the clarification. – bubu – 2010-06-24T10:34:44.023