Does anybody have a simple solution to this? ive tried all the guides on the mint forums re changeing the name of the gdm file etc all to no joy.
please can somebody help?
Are there any mdm ready logins available anywhere?.






./convert.sh 105866-Raindrops.tar.gz#!/bin/bash
# convert.sh
set -e
pkg="$1"
echo -n "Fetching directory name..."
dir=`tar ztf $pkg |head -n 1`
echo "DONE"
echo -n "Extracting the package..."
tar zxf $pkg
echo "DONE"
cd $dir
echo -n "Replacing Gdm text with Mdm..."
sed -i s/GdmGreeterTheme/MdmGreeterTheme/g GdmGreeterTheme.desktop
echo "DONE"
echo -n "Renaming .desktop file..."
mv GdmGreeterTheme.desktop MdmGreeterTheme.desktop
echo "DONE"
cd ..
echo -n "Making new package..."
tar zcf "mdm-$1" $dir
echo "DONE"
echo -n "Removing working directory..."
rm -rf $dir
echo "DONE"
echo "Package converted successfully."


Users browsing this forum: Google Adsense [Bot] and 5 guests