fix URL shortcuts launch with cygstart, create shortcuts directly in SM/Programs/Cygwin
This commit is contained in:
parent
9eafa44d23
commit
74dd44c0de
|
@ -12,6 +12,7 @@ doc=/usr/share/doc/cygwin-doc
|
||||||
site=https://cygwin.com
|
site=https://cygwin.com
|
||||||
cygp=/bin/cygpath
|
cygp=/bin/cygpath
|
||||||
mks=/bin/mkshortcut
|
mks=/bin/mkshortcut
|
||||||
|
launch=/bin/cygstart
|
||||||
|
|
||||||
html=$doc/html
|
html=$doc/html
|
||||||
|
|
||||||
|
@ -26,7 +27,7 @@ do
|
||||||
done
|
done
|
||||||
|
|
||||||
# check for programs
|
# check for programs
|
||||||
for p in $cygp $mks
|
for p in $cygp $mks $launch
|
||||||
do
|
do
|
||||||
if [ ! -x $p ]
|
if [ ! -x $p ]
|
||||||
then
|
then
|
||||||
|
@ -38,7 +39,7 @@ done
|
||||||
# Cygwin Start Menu directory
|
# Cygwin Start Menu directory
|
||||||
smpc_dir="$($cygp $CYGWINFORALL -P -U --)/Cygwin"
|
smpc_dir="$($cygp $CYGWINFORALL -P -U --)/Cygwin"
|
||||||
|
|
||||||
# check Cygwin Start Menu directory still exists
|
# check Cygwin Start Menu directory exists
|
||||||
[ -d "$smpc_dir/" ] || exit 0
|
[ -d "$smpc_dir/" ] || exit 0
|
||||||
|
|
||||||
# check Cygwin Start Menu directory writable
|
# check Cygwin Start Menu directory writable
|
||||||
|
@ -48,13 +49,10 @@ then
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# mkshortcut works only in current directory - change to Cygwin Start Menu
|
|
||||||
cd "$smpc_dir/" || exit 0 # quit if not found
|
|
||||||
|
|
||||||
# create User Guide and API PDF and HTML shortcuts
|
# create User Guide and API PDF and HTML shortcuts
|
||||||
while read target name desc
|
while read target name desc
|
||||||
do
|
do
|
||||||
[ -r $t ] && $mks -n "$name" -d "$desc" $target
|
[ -r $t ] && $mks $CYGWINFORALL -P -n "Cygwin/$name" -d "$desc" -- $target
|
||||||
done <<EOF
|
done <<EOF
|
||||||
$doc/cygwin-ug-net.pdf User\ Guide\ \(PDF\) Cygwin\ User\ Guide\ PDF
|
$doc/cygwin-ug-net.pdf User\ Guide\ \(PDF\) Cygwin\ User\ Guide\ PDF
|
||||||
$html/cygwin-ug-net/index.html User\ Guide\ \(HTML\) Cygwin\ User\ Guide\ HTML
|
$html/cygwin-ug-net/index.html User\ Guide\ \(HTML\) Cygwin\ User\ Guide\ HTML
|
||||||
|
@ -65,7 +63,7 @@ EOF
|
||||||
# create Home Page and FAQ URL link shortcuts
|
# create Home Page and FAQ URL link shortcuts
|
||||||
while read target name desc
|
while read target name desc
|
||||||
do
|
do
|
||||||
$mks -n "$name" -d "$desc" $target
|
$mks $CYGWINFORALL -P -n "Cygwin/$name" -d "$desc" -a $target -- $launch
|
||||||
done <<EOF
|
done <<EOF
|
||||||
$site/index.html Home\ Page Cygwin\ Home\ Page\ Link
|
$site/index.html Home\ Page Cygwin\ Home\ Page\ Link
|
||||||
$site/faq.html FAQ Cygwin\ Frequently\ Asked\ Questions\ Link
|
$site/faq.html FAQ Cygwin\ Frequently\ Asked\ Questions\ Link
|
||||||
|
|
Loading…
Reference in New Issue