blob: 88596c84838ae84a7ec32e4d28d2a337e809e099 (
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
|
#!/bin/sh
# __________ __ ___.
# Open \______ \ ____ ____ | | _\_ |__ _______ ___
# Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
# Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
# Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
# \/ \/ \/ \/ \/
#
#shortcut.desktop generator
# Create a .desktop entry to allow the simulator to be executed in newer shells
# $1 executable
# $2 shortcut name
# $3 icon
create_shortcut() {
path="$(cd "$(dirname "$1")"; pwd)/"
execname=$(basename "$1")
shortname="$2"
icon="$3"
shortcut="$path$shortname.desktop"
echo "Creating shortcut $shortcut"
echo "path: $path"
echo "exec: $execname"
echo "icon: $icon"
echo "[Desktop Entry]
Encoding=UTF-8
Version=1.1
Type=Application
Categories=Apps;
Terminal=false
Name=$shortname
Path=$path
Exec=$path/$execname
Icon=$icon
Name[en-US]=$shortname" > $shortcut
}
#./genshortcut.sh ./rockboxui target-sim music-app
create_shortcut $@
|