OBS User unknown
2006-12-20 17:14:39 +00:00
committed by Git OBS Bridge
commit 91a96d8d2c
13 changed files with 978 additions and 0 deletions

20
hp-toolbox.wrapper Normal file
View File

@@ -0,0 +1,20 @@
#! /bin/bash
# If possible use the KDE program kdialog
# otherwise fall back to the generic X program xmessage.
if test -x $( type -p kdialog )
then PopupProgram='kdialog --error'
else PopupProgram='xmessage'
fi
# If hp-toolbox cannot access a hplip device
# then it doesn't show up on the X window system.
# It only shows an 'ERROR...' or 'error...' message on stderr
# but exits nevertheless with zero exit code.
# Note that one cannot grep for '^error' because there are leading
# escape codes (e.g. "esc [ 3 1 ; 0 1 m") in the output lines.
if test -x $( type -p hp-toolbox )
then hp-toolbox 2>&1 1>/dev/null | grep -q -i 'error' && $PopupProgram 'No HP all-in-one device found (those devices require a special setup).'
else $PopupProgram 'Cannot execute hp-toolbox.'
fi