|
#!/bin/bash
|
|
#Cambiamos el fondo para greeter de Unity
|
|
|
|
PKG="linex-colegio-config"
|
|
SHAREDIR="/usr/share/linex-colegio"
|
|
|
|
divert() {
|
|
diverted_file=$1
|
|
|
|
dpkg-divert --package "$PKG" --add --rename \
|
|
--divert "${diverted_file}-pre-$PKG" $diverted_file
|
|
}
|
|
|
|
divert /usr/share/glib-2.0/schemas/com.canonical.unity-greeter.gschema.xml
|
|
|
|
glib-compile-schemas /usr/share/glib-2.0/schemas/
|
|
|
|
exit 0
|