Tagged Questions
The zenity tag has no wiki summary.
4
votes
9answers
959 views
What's the simplest cross-platform way to pop up graphical dialogs in Python?
I want the simplest possible way to pop up simple dialogs in Python scripts. Ideally, the solution would:
Work on Windows, OS X, Gnome, KDE
Look like a native dialog on any OS
Require minimal code
...
2
votes
1answer
264 views
Writing to stdin from PHP?
In linux I want to run a gnome zenity progress bar window from PHP. How zenity works is like this:
linux-shell$ zenity --display 0:1 --progress --text='Backing up' --percentage=0
10
50
100
So the ...
1
vote
1answer
44 views
Running command while zenity dialog box is shown in bash
I want to show an info box, or a general message, while running a command in background but i can't find an option to do so with zenity. Is it possible in the first place?
An example would be this, ...
1
vote
1answer
249 views
Bash script not working when run outside terminal
This script does not function properly when launched graphically (by double clicking script icon and selecting run), however, runs just fine if called from the terminal; will not save a file or load ...
1
vote
1answer
661 views
Bash, zenity progress bar without cancel
Currently developing a small bash script, my needs are a progress bar that doesn't
come with a cancel button. I have been looking into the zenity progress bar, but
haven't found a way to get rid of ...
1
vote
1answer
305 views
zenity list and for loop
for i in $(seq 1 10); do
echo 'bla bla'
echo 'xxx'
echo $i
done | select=$(zenity --list --title="title" --text="text" --column="X" --column="Y" --column="Z");
I try to create a checklist with ...
1
vote
1answer
991 views
How to use Zenity to display a files contents with tickboxes beside each line of the file
Im trying to give a visual output for a file listing i have. What i want to be able to do is display a tick box beside each line from the file
I have thrown together the following zenity command but ...
1
vote
3answers
1k views
How can my shell script control the placement of a zenity window?
I'm using zenity to post a simple notification when my spam-filter daemon filters a group of messages. Currently this message is posted to the middle of the screen, which is obtrusive. I want to ...
1
vote
3answers
1k views
Shell Script with Zenity
Using Zenity is possible to add buttons,change fonts ,anything besides default options?
If not,there's another dialog for sh that allows more customizing?
0
votes
1answer
42 views
Assigning output of zenity to a variable
I have a script that makes a GUI list here:
zenity --list --text="Choose action" --column= --hide-header opt1 opt2 opt3
How can I make this output be assigned to a variable?
0
votes
5answers
73 views
What is the opposite of && in bash?
My bash script is
zenity --question --text=Continue? && echo Continuing...
How can I make it so it would echo Stopping if the user selected no? i.e.:
zenity --question --text=Continue? ...
0
votes
1answer
70 views
Variable within Zenity within `sh -c` ignored
The script below should open an entry box whose initial entry-text is the value of $filename, but the zenity section in the third line ignores that variable and I end up with no entry-text.
By the ...
0
votes
0answers
86 views
Not getting background daemon statup service notification message box
I have created a script named ssh_inotify.sh to check /var/log/auth.log log file for newly started ssh session and display a question message box. This script uses inotifywait to monitor this above ...
0
votes
2answers
175 views
Updating content of a zenity window
I'm trying to making a small monitor to a program called showbf that print an updating itself every a certain amount of time.
my best try is the following
ssh user@server.foo "exit"
if [ $? -ne 0 ...
0
votes
3answers
693 views
git stderr output can't pipe
I'm writing a graphical URI handler for git:// links with bash and zenity, and I'm using a zenity 'text-info' dialog to show git's clone output while it's running, using FIFO piping. The script is ...