You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
566 B
20 lines
566 B
#!/bin/bash
|
|
#
|
|
# (c) 2014-2015 Timothy Pearson
|
|
# All Rights Reserved
|
|
#
|
|
# WARNING
|
|
# This script is not complete!
|
|
# Hand editing will likely be required after running to ensure all icon names have been updated
|
|
# See http://trinity.etherpad.trinitydesktop.org/60 for a mapping of old KDE3 names to modern XDG names
|
|
|
|
THISSCRIPT=$(readlink -f $0)
|
|
if [[ ! -e "$THISSCRIPT" ]]; then
|
|
echo "Unable to find myself! Exiting..."
|
|
exit 1
|
|
fi
|
|
SCRIPTPATH=`dirname $THISSCRIPT`
|
|
|
|
$SCRIPTPATH/tde_mimetype_conversion
|
|
$SCRIPTPATH/tde_action_conversion
|
|
$SCRIPTPATH/tde_device_conversion |