blob: ddea01279312c064883c6e2dabc36d45e7389f7b (
plain)
1
2
3
4
5
6
|
#!/bin/bash
if [ -x /usr/sbin/lightdm ]; then
# dirty hack kanotix wallpaper on login-screen
echo "background=/usr/share/images/kanotix-starrise/kanotix-starrise.png" >>/etc/lightdm/lightdm-gtk-greeter.conf
sed -i s/Industrial/Clearlooks/ /etc/skel/.gtkrc-2.0
fi
|