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.
tdebase/konqueror/convert_kdelnk.sh

28 lines
699 B

#!/bin/sh
# Converts all user's .kdelnk files to .desktop
# Necessary to avoid duplication when saving a mimetype or an applnk
find ~/.trinity/share/mimelnk ~/.trinity/share/applnk -name "*.kdelnk" -print |
while read k; do
d=`echo $k|sed -e 's/\.kdelnk/\.desktop/'`
echo "Renaming $k to $d"
mv "$k" "$d"
done
# Convert user's bookmarks to .desktop and to remove .xpm from icons
find ~/.trinity/share/apps/kfm/bookmarks -type f -print |
while read k; do
if echo $k | grep -q kdelnk; then # kdelnk file
d=`echo $k|sed -e 's/\.kdelnk/\.desktop/'`
echo "Renaming $k to $d"
else
d=$k
k=$d".tmp"
mv "$d" "$k"
fi
sed -e 's/\.xpm//' "$k" > "$d"
rm -f "$k"
done