From 40514908c72e05fcc28ebe6bbff4104346c25b0e Mon Sep 17 00:00:00 2001 From: Lucio Andrés Illanes Albornoz (arab, vxp) Date: May 14 2018 17:09:19 +0000 Subject: etc/midipix_shortcut.vbs: remove obsolete script. --- diff --git a/etc/midipix_shortcut.vbs b/etc/midipix_shortcut.vbs deleted file mode 100644 index ce8e10d..0000000 --- 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