slackbuilds_ponce/desktop/enlightenment/doinst.sh
dsomero 05df94092e desktop/enlightenment: Fixed (Don't clobber config files)
Signed-off-by: dsomero <xgizzmo@slackbuilds.org>
2012-09-29 17:17:39 -05:00

13 lines
333 B
Bash

config() {
NEW="$1"
OLD="$(dirname $NEW)/$(basename $NEW .new)"
if [ ! -r $OLD ]; then
mv $NEW $OLD
elif [ "$(cat $OLD | md5sum)" = "$(cat $NEW | md5sum)" ]; then
rm $NEW
fi
}
config etc/enlightenment/sysactions.conf.new
config etc/xdg/menus/enlightenment.menu.new
config etc/X11/xinit/xinitrc.enlightenment17.new