summaryrefslogblamecommitdiffstats
path: root/os-plugins/plugins/theme/XX_theme.sh
blob: 2d2b0f0f80832b79cdda6a542a785e43cbb3ca0b (plain) (tree)
1
2
3
4
5
6
7
8
9

          
                                                     
 
                
                       

                                                 
                                        
                                                                                    
        

                                                                  


                                                                
                                                                                          
                  
 
                                                                                
          
  
#! /bin/sh
#
# stage3 part of 'theme' plugin - the runlevel script
#
. /etc/functions
. /etc/sysconfig/config
if [ -e /initramfs/plugin-conf/theme.conf ]; then
	. /initramfs/plugin-conf/theme.conf
	if [ $theme_active -ne 0 ]; then
		[ $DEBUGLEVEL -gt 0 ] && echo "executing the 'theme' os-plugin ...";
	
		testmkd /mnt/var/lib/openslx/themes/displaymanager
		testmkd /mnt/var/lib/openslx/bin
                if [ -d /usr/share/themes/displaymanager ]; then
                        cp -a /usr/share/themes/displaymanager \
                          /mnt/var/lib/openslx/themes
                        sed -i "s,UseTheme=false,UseTheme=true," /mnt/${D_KDMRCPATH}/kdmrc
                fi

		[ $DEBUGLEVEL -gt 0 ] && echo "done with 'theme' os-plugin ...";
	fi
fi