The dialog tag has no wiki summary.
0
votes
1answer
76 views
Guide/help using Dialog with bash scripting
While I understand how to create menus, no guide I've found teaches how to actually link them to commands
I was hoping to have something like:
dialog--clear --title "n00b's spellbook" \
...
0
votes
1answer
53 views
how to make Tabs Outliner, for Chromium Browser, popup on mouse move to screen edge?
So, we have the Tabs Outliner extension
https://chrome.google.com/webstore/detail/tabs-outliner/eggkanocgddhmamlbiijnphhppkpkmkl
That is a very good vertical tabs manager for chromium.
The problem ...
1
vote
1answer
52 views
curses-based program for selection item from the list
Is there in the linux any program which can represent (via pipe or something like that) results of such commands as, for example, ls, cat, grep, ps etc, by means of curses (for example as listbox)? So ...
1
vote
1answer
74 views
screen buffer and dialog
I was trying to use different screen buffer for my script using tput. Below is small script that I am running.
tput smcup
clear
dialog --yesno "Do you want to continue?" 0 0
rc=$?
clear
tput rmcup
if ...
2
votes
2answers
293 views
whiptail or dialog
I am going to create script which will use user input, so I decided to use whiptail, but little bit confuse that which one is portable and will work in ubuntu 10.x and higher and CentOs5.x and higher.
...