Initial commit

This commit is contained in:
Samuel Vasko
2013-07-09 09:43:50 +02:00
commit ef9bbdab6a
9 changed files with 654 additions and 0 deletions

20
lib/init.bat Normal file
View File

@ -0,0 +1,20 @@
@echo off
:: Set prompt style
prompt $E[1;32;40m$P $_$E[1;30;40m$$ $E[0m
:: Pick right version of clink
if "%PROCESSOR_ARCHITECTURE%"=="x86" (
set architecture=86
) else (
set architecture=64
)
:: Run clink
lib\clink\clink_x%architecture%.exe inject --quiet --profile usr
:: Enhance Path
PATH=%PATH%;%CD%\bin
:: cd into users homedir
cd /d "%userprofile%"