Tagged Questions

2
votes
1answer
261 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
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
5answers
71 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
2answers
173 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 ...