31 lines
860 B
Plaintext
31 lines
860 B
Plaintext
|
#!/bin/sh
|
||
|
#####################################################################
|
||
|
### File: 92xprint-xpserverlist
|
||
|
###
|
||
|
### Default Location: /etc/X11/Xsession.d/
|
||
|
###
|
||
|
### Purpose: Setup Xprint env vars
|
||
|
###
|
||
|
### Description: This script is invoked by means of the Xsession file
|
||
|
### at user login.
|
||
|
###
|
||
|
### Invoked by: /etc/X11/Xsession
|
||
|
###
|
||
|
### (c) Copyright 2003-2004 Roland Mainz <roland.mainz@nrubsig.org>
|
||
|
###
|
||
|
### please send bugfixes or comments to https://bugs.freedesktop.org
|
||
|
###
|
||
|
#####################################################################
|
||
|
|
||
|
|
||
|
#
|
||
|
# Obtain list of Xprint servers
|
||
|
#
|
||
|
|
||
|
if [ -x "/etc/init.d/xprint" ] ; then
|
||
|
XPSERVERLIST="`/etc/init.d/xprint get_xpserverlist`"
|
||
|
export XPSERVERLIST
|
||
|
fi
|
||
|
|
||
|
########################## eof #####################
|