From d8822a469587c320eb46ebbd526433ad4ce18fea Mon Sep 17 00:00:00 2001 From: Marcin Polak Date: Wed, 15 Jan 2020 20:23:28 +0100 Subject: [PATCH] renamed templates and cleanup --- README.md | 4 +++- templates/_empty.ahk | 2 -- templates/{_default.ahk => default.ahk} | 0 templates/{_helloWorld.ahk.js => default.ahk.js} | 0 templates/{_helloWorld.ahk => helloWorld.ahk} | 0 templates/{_default.ahk.js => helloWorld.ahk.js} | 2 +- templates/runFromPowerShell.ps1 | 1 - templates/runFromVBScript.vbs | 3 --- 8 files changed, 4 insertions(+), 8 deletions(-) delete mode 100644 templates/_empty.ahk rename templates/{_default.ahk => default.ahk} (100%) rename templates/{_helloWorld.ahk.js => default.ahk.js} (100%) rename templates/{_helloWorld.ahk => helloWorld.ahk} (100%) rename templates/{_default.ahk.js => helloWorld.ahk.js} (92%) delete mode 100644 templates/runFromPowerShell.ps1 delete mode 100644 templates/runFromVBScript.vbs diff --git a/README.md b/README.md index c72e8dd..2db8499 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,8 @@ # Auto Hotkey - Nexss PROGRAMMER 2.0 -## Interesting Scripts found on the +To Install Nexss Programmer please go to [Nexss Programmer CLI](https://github.com/nexssp/cli#readme) for more information. + +## Interesting Scripts found on the Internet https://github.com/Drugoy/Autohotkey-scripts-.ahk diff --git a/templates/_empty.ahk b/templates/_empty.ahk deleted file mode 100644 index 61cbf85..0000000 --- a/templates/_empty.ahk +++ /dev/null @@ -1,2 +0,0 @@ -; Nexss PROGRAMMER 2.0.0 - Auto Hot Key -; Empty file diff --git a/templates/_default.ahk b/templates/default.ahk similarity index 100% rename from templates/_default.ahk rename to templates/default.ahk diff --git a/templates/_helloWorld.ahk.js b/templates/default.ahk.js similarity index 100% rename from templates/_helloWorld.ahk.js rename to templates/default.ahk.js diff --git a/templates/_helloWorld.ahk b/templates/helloWorld.ahk similarity index 100% rename from templates/_helloWorld.ahk rename to templates/helloWorld.ahk diff --git a/templates/_default.ahk.js b/templates/helloWorld.ahk.js similarity index 92% rename from templates/_default.ahk.js rename to templates/helloWorld.ahk.js index 8d66dcf..cdc38cf 100644 --- a/templates/_default.ahk.js +++ b/templates/helloWorld.ahk.js @@ -2,7 +2,7 @@ // in this case library needs JSONParser.ahk so lets specify it. const config = { files: ["3rdPartyLibraries/AutoHotkey-JSON/"], - commands: ["ls -la"], + commands: [], repos: ["https://github.com/cocobelgica/AutoHotkey-JSON.git"] }; diff --git a/templates/runFromPowerShell.ps1 b/templates/runFromPowerShell.ps1 deleted file mode 100644 index 32ea7dd..0000000 --- a/templates/runFromPowerShell.ps1 +++ /dev/null @@ -1 +0,0 @@ -& "C:\Program Files\AutoHotkey\AutoHotkey.exe" "C:\Temp\Start.ahk" \ No newline at end of file diff --git a/templates/runFromVBScript.vbs b/templates/runFromVBScript.vbs deleted file mode 100644 index 7103a54..0000000 --- a/templates/runFromVBScript.vbs +++ /dev/null @@ -1,3 +0,0 @@ -Set oWS = CreateObject("WScript.Shell") -sPath = chr(34) & "C:\System\AHK\C:\Temp\Start.ahk" & Chr(34) -errResult = oWS.Run(sPath,,False) \ No newline at end of file