# HG changeset patch # User Christophe Lincoln # Date 1330700026 -3600 # Node ID da3bd3962a3e2400f618d626d8513da8659943f4 # Parent 77aa214f15cae2677e6d97fa2dd3e1034fcb271f small fixes to notify and box diff -r 77aa214f15ca -r da3bd3962a3e tazpkg-box --- a/tazpkg-box Fri Mar 02 15:21:55 2012 +0100 +++ b/tazpkg-box Fri Mar 02 15:53:46 2012 +0100 @@ -49,7 +49,6 @@ yad --text-info \ --width=480 --height=260 --center --on-top \ --title="TazPKG" --window-icon=$icon \ - --fore="#ffffff" --back="#000000" --wrap \ --margins=4 --button="gtk-close:0" ;; actions) pkg=$(basename $2) diff -r 77aa214f15ca -r da3bd3962a3e tazpkg-notify --- a/tazpkg-notify Fri Mar 02 15:21:55 2012 +0100 +++ b/tazpkg-notify Fri Mar 02 15:53:46 2012 +0100 @@ -23,6 +23,7 @@ doc="/usr/share/doc/tazpkg/tazpkg.html" installed=$(ls $db/installed | wc -l) text="$(gettext "Installed packages") $installed" +icon="/usr/share/pixmaps/tazpkg.png" [ -f "$db/packages.list" ] && mtime=$(find $db/packages.list -mtime +10;) [ -f "$db/packages.up" ] && up=$(cat $db/packages.up | wc -l) @@ -33,7 +34,7 @@ # Attach a file descriptor exec 3<> $fifo # Notification icon - yad --notification --listen --image="tazpkg" \ + yad --notification --listen --image=$icon \ --text="Checking packages lists - $text" <&3 # Clean-up rm -f $fifo