URI:
       tmoar - gtomb - tomb gtk frontend in zenity
  HTML git clone git://parazyd.org/gtomb.git
   DIR Log
   DIR Files
   DIR Refs
   DIR README
   DIR LICENSE
       ---
   DIR commit 2b3eb160a389881d5d214b16fed3c6884f636d87
   DIR parent c640e53618dde4090da24f0d3c9e06fbb881b990
  HTML Author: parazyd <parazyd@dyne.org>
       Date:   Fri, 18 Dec 2015 17:12:25 +0100
       
       moar
       
       Diffstat:
         M gtomb                               |      10 ++++++++--
       
       1 file changed, 8 insertions(+), 2 deletions(-)
       ---
   DIR diff --git a/gtomb b/gtomb
       t@@ -10,8 +10,9 @@
        # intended and should be used with caution.
        #
        
       -ver="0.6"
       +ver="0.6.1"
        TOMBPATH="/usr/local/bin/tomb" # Set this to your tomb executable's path
       +
        # {{{ monmort icon
        MONMORT=`mktemp`
        ICONB64="iVBORw0KGgoAAAANSUhEUgAAACAAAAAgEAQAAACJ4248AAAAAmJLR0T//xSrMc0AAAAJcEhZcwAA\n
       t@@ -26,6 +27,7 @@ echo -e "$ICONB64" | base64 --decode > $MONMORT
        # }}}
        
        function _ { _clean } # I like cleaning :)
       +
        # {{{ sudo function
        function _sudowrong {
            if [[ $? == 1 ]]; then
       t@@ -857,4 +859,8 @@ function _exhume {
        }
        # }}}
        
       -_main
       +if [ ! -f $TOMBPATH ]; then
       +    _zenwarn "Warning" "Tomb binary is nonexistent in the current path. Install it or edit the script to point to the correct path."
       +else
       +    _main
       +fi