mirror of
https://github.com/cmderdev/cmder.git
synced 2024-11-10 09:49:12 +08:00
20 lines
374 B
Batchfile
20 lines
374 B
Batchfile
@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
|
|
vendor\clink\clink_x%architecture%.exe inject --quiet --profile config
|
|
|
|
:: Enhance Path
|
|
PATH=%PATH%;%CD%\bin
|
|
|
|
:: cd into users homedir
|
|
cd /d "%userprofile%" |