summaryrefslogtreecommitdiffstats
path: root/kde-tde/convert_kde3_icon_names_to_xdg_standards
diff options
context:
space:
mode:
Diffstat (limited to 'kde-tde/convert_kde3_icon_names_to_xdg_standards')
-rwxr-xr-xkde-tde/convert_kde3_icon_names_to_xdg_standards14
1 files changed, 11 insertions, 3 deletions
diff --git a/kde-tde/convert_kde3_icon_names_to_xdg_standards b/kde-tde/convert_kde3_icon_names_to_xdg_standards
index bd97391..86000cd 100755
--- a/kde-tde/convert_kde3_icon_names_to_xdg_standards
+++ b/kde-tde/convert_kde3_icon_names_to_xdg_standards
@@ -1,6 +1,6 @@
#!/bin/bash
#
-# (c) 2014 Timothy Pearson
+# (c) 2014-2015 Timothy Pearson
# All Rights Reserved
#
# WARNING
@@ -8,5 +8,13 @@
# 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
-./tde_mimetype_conversion
-./tde_action_conversion \ No newline at end of file
+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 \ No newline at end of file