Tech Tip: Use gxmessage for Displaying GUI Messages from Scripts
There are many dialog programs out there, Zenity, Kdialog, xdialog, etc. I love programs like these. They make it so easy to spice up a shell script with a little GUI action. Today I'm going to go look at a dialog program called gxmessage.
I just recently got a Nokia N900 (Every Linux user should get one) and while playing with it I found that a few programs on it were calling gxmessage to create a user interface. I found that it seemed to have a number of options and seemed easy to use. So I jumped on to my laptop and did a search through the repositories for it. I found it in a package called "gmessage". To install it just do the following:
sudo aptitude install gmessage
You can use this one line code to produce a GUI dialog with buttons:
gxmessage -center \
-buttons "This is my button":1,"This is my other button":2 \
-title "This is my dialog BOX" 'Linux is great!!!'
One of the nice features that gxmessage has, that some others don't, is the ability to choose the size of the dialog box using the "-geometry" switch.
gxmessage -center \
-buttons "This is my button":1,"This is my other button":2 \
-geometry 190x80 \
-title "This is my dialog BOX" 'Linux is great!!!'
Gxmessage will restrict you from making your dialog to0 small for the componets you have placed in it. For example, if you set the geometry to 10x10 and the dialog needs at lest 100x50 to display all your buttons and messages it will override your 10x10 and default to 100x50.
For each button you create you can asign it a numeric value which is indicated by placeing a colon after the buttons message followed by the numeric value you wish to asign to it. You can then grab the value of the button being pressed and use it to continue your script. Here is a short example:
#!/bin/bash
gxmessage -center \
-buttons "Yes":1,"Of Course":2 \
-geometry 290x80 \
-title "Linux Journal Question" 'Does Shawn Powers ROCK?'
answer=$?
case "$answer" in
1)
gxmessage -center "You said 'YES'"
;;
*)
gxmessage -center "I agree, Of Course."
;;
esac
I've only touched the surface here of what you can do with gxmessage, look through the man pages for more.
| Attachment | Size |
|---|---|
| gxmessage-1.png | 10.44 KB |
| gxmessage-2.png | 10.05 KB |
Trending Topics
| Calculating Day of the Week | May 30, 2012 |
| Hack and / - Password Cracking with GPUs, Part II: Get Cracking | May 29, 2012 |
| Networking Poll | May 29, 2012 |
| OpenLDAP Everywhere Reloaded, Part I | May 23, 2012 |
| Chemistry the Gromacs Way | May 21, 2012 |
| Make TV Awesome with Bluecop | May 16, 2012 |
- Hack and / - Temper Temper
- Calculating Day of the Week
- Hack and / - Password Cracking with GPUs, Part II: Get Cracking
- Validate an E-Mail Address with PHP, the Right Way
- OpenLDAP Everywhere Reloaded, Part I
- RSS Feeds
- Hack and / - Password Cracking with GPUs, Part I: the Setup
- Networking Poll
- Tales From the Server Room: Zoning Out
- Boot with GRUB
- Really nice :-)
Something
4 hours 4 min ago - Have you experimented with
4 hours 7 min ago - Awesome..
4 hours 28 min ago - Good One..
4 hours 47 min ago - Nice One...
4 hours 50 min ago - very good web: ---(
4 hours 54 min ago - very good web: ---(
5 hours 58 sec ago - very good web: ---(
5 hours 3 min ago - very good web: ---(
5 hours 7 min ago - very good web: ---(
5 hours 8 min ago





Comments
@Csaba
Can't you just ssh into the user's box and export the DISPLAY variable to the user's current desktop and then run whatever X app you want and displaying it to the user? for example,
csaba@localhost:$ ssh user@remote.com
user@remotehost.com:$ export DISPLAY=:0
user@remotehost.com:$ /usr/bin/xapptobedisplayed
That should result in whatever /usr/bin/xapptobedisplayed program showing up on the user's desktop. Obviously the applications can be something like this gxmessage or whatever you want. Hope that helps.
gxmessage to just one person
I am running an LTSP setup in a high school with ubuntu. What I would like is to display a message like "you are running out of space, delete some.." after the user logged in. Right now there is a grace period but the user will not know about it. So basically what I am looking into is a way sending a message to a user. If I understand it correctly I need to figure out what user using what display then send a message regarding that. Hm, isn't there something easier?
gxmessage to just one person
I have been looking at using xmessage gxmessage to send a note to just one person on the local network.
But haven't found the howto.
Does anyone know how to do it?
thx, Csaba
Notify can be useful too
I've found myself adding notify-send to a lot of my scripts recently. This adds notification windows that appear for a certain amount of time and then disappear without user interaction - good for those "This just happened" messages that don't need a button pressed.
I actually wrote a tech tip
I actually wrote a tech tip about that a few months back:
http://www.linuxjournal.com/content/tech-tip-get-notifications-your-scri...
http://filmsbykris.com/
Everything you ever need to know about Open-Source Software.
gxmessage web site?
No link to the gxmessage web site? Where's the love? Here's what I found.
http://homepages.ihug.co.nz/~trmusson/programs.html#gxmessage