This repository has been archived by the owner on Sep 29, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 374
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Michael Sarahan
committed
Oct 13, 2015
1 parent
3a03f56
commit 5d60ec7
Showing
4 changed files
with
27 additions
and
0 deletions.
There are no files selected for viewing
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
set MENU_DIR=%PREFIX%\Menu | ||
IF NOT EXIST (%MENU_DIR%) mkdir %MENU_DIR% | ||
|
||
copy %RECIPE_DIR%\Iconleak-Atrous-Console.ico %MENU_DIR% | ||
if errorlevel 1 exit 1 | ||
|
||
copy %RECIPE_DIR%\menu-windows.json %MENU_DIR%\console_shortcut.json | ||
if errorlevel 1 exit 1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
{ | ||
"menu_name": "Python Prompts", | ||
"menu_items": | ||
[ | ||
{ | ||
"name": "Conda Env Prompt", | ||
"system": "%windir%\\system32\\cmd.exe", | ||
"scriptargument": ["/K", "${PYTHON_SCRIPTS}\\activate.bat", "${ENV_NAME}"], | ||
"icon": "${MENU_DIR}/Iconleak-Atrous-Console.ico" | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
package: | ||
name: console_shortcut | ||
version: 0.1.0 | ||
|
||
about: | ||
license: BSD | ||
summary: Shortcut creator for Windows (using menuinst) |