Skip to content

Commit

Permalink
EasyBashGUI with notification functions...
Browse files Browse the repository at this point in the history
  • Loading branch information
vaisarger committed Nov 14, 2019
1 parent 5c90b0a commit eed9ef4
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 13 deletions.
4 changes: 2 additions & 2 deletions README
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ You can force widget usage through "supermode" variable ( possible values: "yad"
e.g.: >export supermode="kdialog" && source easybashgui && message Hello ).
NOTE on "none" mode: you have to make sure STDERR *is not* redirected, in order to see shell boxes in your terminal.

In EasyBashGUI "suite" there are a launcher ( "easybashgui" ), a launcher that toggles some debug options ( "easybashgui-debug" ), a widget library ( "easybashgui_X.X.X.lib" ), and a stand-alone script (rather old nowadays) to create dialog boxes externally ( "easydialog.sh" ). Moreover there is an other library too ( "easybashlib" ) for optional ancillary functions ( thanks to it you don't need anymore to use "clean_temp()" function at the end of your EBG scripts ).
In EasyBashGUI "suite" there are a launcher ( "easybashgui" ), a launcher that toggles some debug options ( "easybashgui-debug" ), a widget library ( "easybashgui_X.X.X.lib" ), and a stand-alone script (rather old nowadays) to create dialog boxes externally ( "easydialog-legacy" ). Moreover there is an other library too ( "easybashlib" ) for optional ancillary functions ( thanks to it you don't need anymore to use "clean_temp()" function at the end of your EBG scripts ).



Expand Down Expand Up @@ -215,7 +215,7 @@ done



( For old easydialog.sh use and examples, you would launch it simply with "-h" option )
( For the old "easydialog-legacy" examples, you would launch it simply with "-h" option )



Expand Down
2 changes: 1 addition & 1 deletion lib/easybashgui.lib
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
#####################################
#####################################
#
LIB_VERSION="12.0.0"
LIB_VERSION="12.0.2"
LIB_NAME="easybashgui.lib"
LIB_URL="https://github.com/BashGui/easybashgui"
LIB_AUTHOR="Vittorio Cagnetta"
Expand Down
8 changes: 4 additions & 4 deletions makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#EBGlib=$(wildcard easybashgui_[0-9].[0-9].[0-9])
VERSION=12.0.0
VERSION=12.0.2

#cartelle di destinazione
DESTDIR ?= ""
Expand Down Expand Up @@ -30,12 +30,12 @@ install:
mkdir -p $(BINDIR)

cp $(BINARI) $(BINDIR)
chmod 755 $(BINDIR)/easybashgui $(BINDIR)/easydialog
chmod 755 $(BINDIR)/easybashgui $(BINDIR)/easydialog-legacy
@echo

@echo Creating /usr/share/easybashgui directory...
mkdir -p $(SHAREDIR)
@echo Copying Xdialog icons ...
@echo Copying icons ...
cp $(ICONE) $(SHAREDIR)
@echo

Expand Down Expand Up @@ -65,7 +65,7 @@ uninstall:
@echo

@echo Removing easybashgui ...
-rm $(BINDIR)/easybashgui $(BINDIR)/easybashgui-debug $(BINDIR)/easydialog
-rm $(BINDIR)/easybashgui $(BINDIR)/easybashgui-debug $(BINDIR)/easydialog-legacy
@echo

@echo Removing /usr/share/easybashgui directory...
Expand Down
5 changes: 2 additions & 3 deletions src/easybashgui
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,7 @@
#
#########################
#
# Copyright (C) 2018 Vittorio Cagnetta
# Copyright (C) 2013 Christian ?
# Copyright (C) 2019 Vittorio Cagnetta
#
# Author: Vittorio Cagnetta <[email protected]>
# Author: Christian ? <https://launchpad.net/~cgat-1>
Expand Down Expand Up @@ -80,7 +79,7 @@
# something like if [ -e $(eb_incl__absolute_path)/$module_*.*.* ] ?
#
###################################################################
MODULE_VERSION="12.0.0"
MODULE_VERSION="12.0.2"
MODULE_NAME="easybashgui"
libexec_dir="/usr/lib/easybashgui"
###################################################################
Expand Down
5 changes: 2 additions & 3 deletions src/easybashgui-debug
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,7 @@
#
#########################
#
# Copyright (C) 2018 Vittorio Cagnetta
# Copyright (C) 2013 Christian ?
# Copyright (C) 2019 Vittorio Cagnetta
#
# Author: Vittorio Cagnetta <[email protected]>
# Author: Christian ? <https://launchpad.net/~cgat-1>
Expand Down Expand Up @@ -80,7 +79,7 @@
# something like if [ -e $(eb_incl__absolute_path)/$module_*.*.* ] ?
#
###################################################################
MODULE_VERSION="12.0.0"
MODULE_VERSION="12.0.2"
MODULE_NAME="easybashgui-debug"
###################################################################
#
Expand Down

0 comments on commit eed9ef4

Please sign in to comment.