blob: 63e984d7f65da332d390339ca997be2aef94a0fb (
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
|
#!/bin/sh
setVar() {
if [ ! "$value" = "" ]; then
name=`echo "$name" | sed 'y:-\[\]:_____:'`
value=`echo "$value" | sed 's:":\\\":g'`
export $name="$value"
fi
}
#convert true/false to 1/0
bool() {
if [ ! "$1" = "" ]; then
if [ "$1" = "True" ]; then
cmd="$cmd $2 1"
else
cmd="$cmd $2 0"
fi
fi
}
str() {
if [ ! "$1" = "" ]; then
cmd="$cmd $2 \"$1"\"
fi
}
convert_desktop_to_eap() {
echo "Converting $1 to $2"
for l in `cat $1`; do
#on empty line clear vars
if [ "$l" = "" ]; then
#grab previous var if it exists
setVar
name=""
value=""
else
#if an = is in the line it's a name/value pair
if echo "$l" | grep -q "="; then
#grab previous var if it exists
setVar
name=`echo "$l" | cut -d "=" -f 1`
value=`echo "$l" | cut -d "=" -f 2-`
else
#if previous value assume this is a continuation
if [ ! "$value" = "" ]; then
value="$value $l"
fi
fi
fi
done
setVar
cmd=""
#set up options
bool "$StartupNotify" -set-startup-notify
str "$Name" -set-name
str "$Comment" -set-comment
str "$Exec" -set-exe
if [ ! "$cmd" = "" ]; then
#cp ~/.e/e/applications/all/aterm.eap gpe-othello.eap
##empty out eap file
##enlightenment_eapp | grep -- -set- | cut -d " " -f 3 | xargs -iCMD enlightenment_eapp gpe-othello.eap CMD \"\"
#enlightenment_eapp gpe-othello.eap -del-all
cat <<EOF > /tmp/gpeEap.edc
images {
image: "$Icon" COMP;
}
collections {
group {
name: "icon";
max: 48 48;
parts {
part {
name: "image";
mouse_events: 0;
description {
state: "default" 0.0;
aspect: 1.0 1.0;
image.normal: "$Icon";
}
}
}
}
}
EOF
edje_cc --image_dir "$PATH_TO_PIXMAPS" /tmp/gpeEap.edc "$PATH_TO_EAP/$2"
rm /tmp/gpeEap.edc
cmd="enlightenment_eapp \"$PATH_TO_EAP/$2\" $cmd"
#pipe command in sh to allow it to re-interpret quotes
echo $cmd | /bin/sh -s
if `echo "$Categories" | grep -q "SystemSettings"`; then
dir="Settings"
elif `echo "$Categories" | grep -q "PIM"`; then
dir="PIM"
elif `echo "$Categories" | grep -q "Network"`; then
dir="Network"
elif `echo "$Categories" | grep -q "Games"`; then
dir="Games"
elif `echo "$Categories" | grep -q "Game"`; then
dir="Games"
elif `echo "$Categories" | grep -q "AudioVideo"`; then
dir="Multimedia"
elif `echo "$Categories" | grep -q "Panel"`; then
dir="Utility/Panel"
elif `echo "$Categories" | grep -q "Utility"`; then
dir="Utlity"
else
dir=""
fi
#dir=`echo "$Categories" | sed 'y:;:/:'`
mkdir -p "$PATH_TO_E_GPE/$dir"
echo "$2" >> "$PATH_TO_E_GPE/$dir"/.order
fi
}
PATH_TO_DESKTOP="/usr/share/applications"
PATH_TO_PIXMAPS="/usr/share/pixmaps"
PATH_TO_EAP="/home/root/.e/e/applications/all"
PATH_TO_E_GPE="/home/root/.e/e/applications/favorite/GPE"
if [ ! -d $PATH_TO_E_GPE ]; then
mkdir -p $PATH_TO_E_GPE
fi
if [ ! -d $PATH_TO_EAP ]; then
mkdir -p $PATH_TO_EAP
fi
cd "$PATH_TO_DESKTOP"
for f in `ls *.desktop`; do
eap=`echo "$f" | cut -d . -f 1`
convert_desktop_to_eap "$PATH_TO_DESKTOP/$f" "$eap.eap"
done
|