blob: 0acc799ad31dc62cb75747f410e4d8d6d8787511 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
#!/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
|