File: hp-plugin-ubuntu

package info (click to toggle)
hplip 3.16.11%2Brepack0-3
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 129,416 kB
  • ctags: 20,423
  • sloc: python: 78,229; ansic: 67,606; cpp: 59,753; sh: 11,285; perl: 4,353; makefile: 693
file content (22 lines) | stat: -rwxr-xr-x 719 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/bin/sh
if [ -z $DISPLAY ]; then
    sudo -p \
	"
HP Printer Driver Plug-in Installetion
--------------------------------------

This program will install the proprietary plug-in for HP's printer
driver framework HPLIP into your system. This requires administrator
access. Please enter your password.
User: %u
Password: " \
    hp-plugin -i
else
    if python -c 'import PyQt4.QtGui' 2>/dev/null && which hp-toolbox >/dev/null 2>/dev/null; then
	pkexec env DISPLAY=$DISPLAY XAUTHORITY=$XAUTHORITY hp-plugin -u >/dev/null 2>&1
	exit 0
    else
	pkexec env DISPLAY=$DISPLAY XAUTHORITY=$XAUTHORITY xterm -T 'HP Printer Driver Plug-in Installation' -sb -rightbar -hold -e hp-plugin -i >/dev/null 2>&1 &
	exit 0
    fi
fi