xserver-multidpi/hw/xprint/etc/Xsession.d/92xprint-xpserverlist

31 lines
860 B
Plaintext
Raw Normal View History

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