summaryrefslogtreecommitdiffhomepage
path: root/etc
diff options
context:
space:
mode:
authorLucio Andrés Illanes Albornoz (arab, vxp) <lucio@lucioillanes.de>2018-05-14 17:09:19 +0000
committerLucio Andrés Illanes Albornoz (arab, vxp) <lucio@lucioillanes.de>2018-05-14 17:09:19 +0000
commit40514908c72e05fcc28ebe6bbff4104346c25b0e (patch)
tree003363dea333e03a3d343994d1c68d12e1b198a2 /etc
parent981580852f392e838aacb43dd223581628a01684 (diff)
downloadmidipix_build-40514908c72e05fcc28ebe6bbff4104346c25b0e.tar.bz2
midipix_build-40514908c72e05fcc28ebe6bbff4104346c25b0e.tar.xz
etc/midipix_shortcut.vbs: remove obsolete script.
Diffstat (limited to 'etc')
-rw-r--r--etc/midipix_shortcut.vbs14
1 files changed, 0 insertions, 14 deletions
diff --git a/etc/midipix_shortcut.vbs b/etc/midipix_shortcut.vbs
deleted file mode 100644
index ce8e10d4..00000000
--- a/etc/midipix_shortcut.vbs
+++ /dev/null
@@ -1,14 +0,0 @@
-Set WshShell = CreateObject("WScript.Shell")
-If WScript.Arguments.Count = 0 Then
- CygwinPath = "C:\cygwin64"
-Else
- CygwinPath = WScript.Arguments(0)
-End If
-Set fso = CreateObject("Scripting.FileSystemObject")
-Set oMyShortCut = WshShell.CreateShortcut(WshShell.CurrentDirectory + "\Midipix shell.lnk")
-oMyShortCut.Arguments = "midipix.sh"
-oMyShortcut.IconLocation = CygwinPath + "\Cygwin-Terminal.ico"
-oMyShortCut.TargetPath = CygwinPath + "\bin\sh.exe"
-oMyShortCut.WindowStyle = 4
-oMyShortCut.WorkingDirectory = WshShell.CurrentDirectory
-oMyShortCut.Save