Skip to content

Commit 21bf630

Browse files
committed
Some improvements in various functions
1 parent 49914ac commit 21bf630

8 files changed

Lines changed: 210 additions & 101 deletions

File tree

README.md

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,6 @@ transparently, based on the availability of the backends (frontends).
3030
* zenity
3131
* Xdialog
3232

33-
Since 14.0.0 version you can export "supercontext" env. variable (available values are:
34-
supercontext="terminal" or supercontext="windows" ) to set EasyBashGUI to use
35-
a terminal (xterm, gnome-terminal, etc. ) with "gum", "dialog" or "none" mode or
36-
graphical widgets ("yad", "gtkdialog", "kdialog", "zenity", "Xdialog" ).
3733

3834
![](docs/easybasguidialogs.jpeg)
3935

@@ -72,7 +68,7 @@ Please check [docs/README.md](docs/README.md) document file!
7268

7369
### Packages
7470

75-
There are for some distros [![build result](https://build.opensuse.org/projects/home:venenux:bashgui/packages/easybashgui/badge.svg?type=percent)](https://build.opensuse.org/package/show/home:venenux:bashgui/easybashgui) : [![](https://img.shields.io/badge/Debian-A81D33?style=for-the-badge&logo=debian&logoColor=white) ![](https://img.shields.io/badge/Cent%20OS-262577?style=for-the-badge&logo=CentOS&logoColor=white) ![](https://img.shields.io/badge/Red%20Hat-EE0000?style=for-the-badge&logo=redhat&logoColor=white) ![](https://img.shields.io/badge/Ubuntu-E95420?style=for-the-badge&logo=ubuntu&logoColor=white) ](https://software.opensuse.org//download.html?project=home%3Avenenux%3Abashgui&package=easybashgui) and more!
71+
There are (sometimes old, please check easybashgui-x.x.x.tar.gz first! ) for some distros [![build result](https://build.opensuse.org/projects/home:venenux:bashgui/packages/easybashgui/badge.svg?type=percent)](https://build.opensuse.org/package/show/home:venenux:bashgui/easybashgui) : [![](https://img.shields.io/badge/Debian-A81D33?style=for-the-badge&logo=debian&logoColor=white) ![](https://img.shields.io/badge/Cent%20OS-262577?style=for-the-badge&logo=CentOS&logoColor=white) ![](https://img.shields.io/badge/Red%20Hat-EE0000?style=for-the-badge&logo=redhat&logoColor=white) ![](https://img.shields.io/badge/Ubuntu-E95420?style=for-the-badge&logo=ubuntu&logoColor=white) ](https://software.opensuse.org//download.html?project=home%3Avenenux%3Abashgui&package=easybashgui) and more!
7672

7773

7874
## Credits.

docs/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ echo -e "source easybashgui\nmessage hola" > ~/Devel/easybashgui/newprogram
3434
bash ~/Devel/easybashgui/newprogram
3535
```
3636

37-
That's it !!!!! Easyle! But what if you wants all build-in!? Without install?,
37+
That's it !!!!! Easy! But what if you wants all built-in!? Without install?
3838
of course you can! Check next section:
3939

4040
#### Quick developer usage
@@ -468,11 +468,11 @@ while :
468468
#
469469
if [ "${answer}" = "GOOD" ]
470470
then
471-
notify_message "Changed in \"good\" ..."
471+
notify_message --seconds 3 "Changed in \"good\" ..."
472472
notify_change "good"
473473
elif [ "${answer}" = "BAD" ]
474474
then
475-
notify_message "Changed in \"bad\" ..."
475+
notify_message -s 3 --icon "application-exit" "Changed in \"bad\" ..."
476476
notify_change -i "gtk-help" -t "This tooltip is bad" "bad"
477477
else
478478
exit
@@ -911,7 +911,7 @@ Like "message" but in the form of notification, allows to choose the icon to dis
911911
* PID: echoes the PID of the current process
912912

913913
``` bash
914-
notify_message [-i "<icon>"] "[text]"
914+
notify_message [-i|--icon "<icon>"] [-s|--seconds "<seconds>"] "[text]"
915915
```
916916

917917
#### notify_change

0 commit comments

Comments
 (0)