69

I want to make some graphical dialogs for my script but don't know how. I hear something about GTK-Server or something like that. If someone knows how to link Bash with tcl/tk I also be satisfied.

Please do not post something like "change to C++" because my project must be a script in Bash; there are no other options.

Any ideas?

EDIT: Thanks for answers but I don't want "graphics" as in colors in the console, but graphical windows which I can move, minimize etc. I will test xmessage, but I don't think that will be what I am searching for.

EDIT 2: I don't want make a simple dialog like yes/no, but some interface like progress bars and buttons, something like a game.

lauriys
  • 4,134
  • 7
  • 30
  • 40

8 Answers8

66

Before actually using GUI dialogues, consider using console prompts. Quite often you can get away with simple "y/n?" prompts, which in bash you achieve via the read command..

read -p "Do something? ";
if [ $REPLY == "y" ]; then
    echo yay;
fi

If console prompt's just won't cut it, Zenity is really easy to use, for example:

      zenity --error --text="Testing..."
      zenity --question --text="Continue?"

This only works on Linux/Gnome (or rather, it'll only be installed by default on such systems). The read method will work on pretty much any platform (including headless machines, or via SSH)

If you need anything more complex than what read or Zenity provides, "change to C++" is really the best method (although I'd recommend Python/Ruby over C++ for such shell-script-replacement tasks)

I want to do simple interface for some strange game, the progress bar for health or something is the example for what I want. Variable "HEALTH" is 34, so make progress bar filled in 34/100

As a command-line script, it'd use Python:

$ export HEALTH=34
$ python -c "import os; print '*' * int(os.environ.get('HEALTH', 0))"
**********************************

Or to normalise the values between 1 and 78 (so you don't get line-wrapping on a standard terminal size):

$ python -c "import os; print '*' * int((int(os.environ.get('HEALTH', 0)) / 100.0) * 78)"

Zenity also has a Progress Dialog,

#!/bin/sh
(
echo "10" ; sleep 1
echo "# Updating mail logs" ; sleep 1
echo "20" ; sleep 1
echo "# Resetting cron jobs" ; sleep 1
echo "50" ; sleep 1
echo "This line will just be ignored" ; sleep 1
echo "75" ; sleep 1
echo "# Rebooting system" ; sleep 1
echo "100" ; sleep 1
) |
zenity --progress \
  --title="Update System Logs" \
  --text="Scanning mail logs..." \
  --percentage=0

if [ "$?" = -1 ] ; then
        zenity --error \
          --text="Update canceled."
fi

As I said before, if Zenity cannot do what you need, look into writing your game-thing as a "proper" script in Python/Ruby/Perl/C++/etc as it sounds like you're pushing the bounds of what a shell-script can do..

Chris
  • 135
  • 2
  • 7
dbr
  • 153,498
  • 65
  • 266
  • 333
  • 1
    I don't want the yes/no, but I want to do simple interface for some strange game, the progress bar for health or something is the example for what I want. Variable "HEALTH" is 34, so make progress bar filled in 34/100. That I want to do. – lauriys May 29 '09 at 20:58
  • The [Progress Dialog](https://help.gnome.org/users/zenity/stable/progress.html.en) link above is broken :( – Jeremy Iglehart Jul 24 '18 at 01:34
  • *So* easy to use: `Forbidden You don't have permission to access /users/zenity/stable/ on this server. Apache/2.2.15 (Red Hat) Server at help.gnome.org Port 80` – Snowcrash Apr 18 '19 at 15:09
23

If you want to write a graphical UI in bash, zenity is the way to go. This is what you can do with it:

Application Options:
  --calendar                                     Display calendar dialog
  --entry                                        Display text entry dialog
  --error                                        Display error dialog
  --info                                         Display info dialog
  --file-selection                               Display file selection dialog
  --list                                         Display list dialog
  --notification                                 Display notification
  --progress                                     Display progress indication dialog
  --question                                     Display question dialog
  --warning                                      Display warning dialog
  --scale                                        Display scale dialog
  --text-info                                    Display text information dialog

Combining these widgets you can create pretty usable GUIs. Of course, it's not as flexible as a toolkit integrated into a programming language, but in some cases it's really useful.

nxadm
  • 2,049
  • 11
  • 17
15

there is a command called dialog which uses the ncurses library. "Dialog is a program that will let you to present a variety of questions or display messages using dialog boxes from a shell script. These types of dialog boxes are implemented (though not all are necessarily compiled into dialog)"

see http://pwet.fr/man/linux/commandes/dialog

Pierre
  • 31,741
  • 29
  • 101
  • 180
  • 1
    Funny enough, I was just installing a version of the utility when I cam across your answer. Dialog works quite well I think. – Kamil Kisiel May 29 '09 at 20:57
  • In addition to the `dialog` utility, `whiptail` should also be mentioned. They even maintain some level of compatibility between each other. – Bass Sep 27 '19 at 21:13
14

Well, if you can use Tcl/Tk in your environment, you probably should write a TCL script and use that. You might also look at wish.

Charlie Martin
  • 103,438
  • 22
  • 180
  • 253
11

You could use dialog that is ncurses based or whiptail that is slang based.

I think both have GTK or Tcl/Tk bindings.

Renato Aquino
  • 762
  • 1
  • 5
  • 15
7

Please, take a look at my library: http://sites.google.com/site/easybashgui

It is intended to handle, with the same commands set, indifferently all four big tools "kdialog", "Xdialog", "cdialog" and "zenity", depending if X is running or not, if D.E. is KDE or Gnome or other. There are 15 different functions ( among them there are two called "progress" and "adjust" )...

Bye :-)

vaisarger
  • 87
  • 1
  • 1
  • cool, so it is an adapter. Are the supported tools required or you lib will use whatever it find, compatibly with the environment detected? – drAlberT May 27 '10 at 06:55
  • This one is pretty cool actually. The bash programmer need not worry about which platform the user will be using KDE or gnome; it will automatically detect the environment and show the UI accordingly using the available libraries. – shivams Jan 06 '15 at 04:52
6

You can gtk-server for this. Gtk-server is a program that runs in background and provides text-based interface to allow other programs (including bash scripts) to control it. It has examples for Bash (http://www.gtk-server.org/demo-ipc.bash.txt, http://www.gtk-server.org/demo-fifo.bash.txt)

dmitry_vk
  • 4,211
  • 16
  • 19
  • Sounds interesting. Unfortunately, there don't seem to be .deb packages for it. Will try to compile it anyway. – mivk Jan 07 '13 at 14:52
4

If you have Qt/KDE installed, you can use kdialog, which pops up a Qt dialog window. You can easily specify to display a Yes/No dialog, OK/Cancel, simple text input, password input etc. You then have access to the return values from these dialogs at the shell.

Brian Carper
  • 66,618
  • 25
  • 158
  • 164