xserver-multidpi/hw/xprint/etc/Xsession.d/92xprint-xpserverlist
Drew Parsons 8b4ed47c5d * Install Xprint's Xsession script to $(sysconfdir)/X11/Xsession.d
* Removing outdated references to CDE and dt, rename script to
  92xprint-xpserverlist.
2006-09-21 22:19:44 +10:00

31 lines
860 B
Bash

#!/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 #####################