#!/bin/sh # # lock -- runs xxlock with screen colours that YOU LIKE! # On the Sun xlock, colours set the password entry screen only, # and saver background is always black. So we'll set a white-on-black # password entry screen to match, rather than the white-on-black # default. # Since they aren't used by the Sun savers, there's very little point # in randomizing these colours. # This is separate from xxlock since other versions of xlock behave # differently, overriding the saver drawing colours and background background="black" foreground="white" exec /bin/xxlock -bg $background -fg $foreground $*