Compare commits

...

4 Commits

3 changed files with 64 additions and 0 deletions

37
.minttyrc Normal file
View File

@ -0,0 +1,37 @@
# Dracula
ForegroundColour=248,248,242
BackgroundColour=40,42,54
Black=0,0,0
BoldBlack=104,104,104
Red=255,85,85
BoldRed=255,110,103
Green=80,250,123
BoldGreen=90,247,142
Yellow=241,250,140
BoldYellow=244,249,157
Blue=202,169,250
BoldBlue=202,169,250
Magenta=255,121,198
BoldMagenta=255,146,208
Cyan=139,233,253
BoldCyan=154,237,254
White=191,191,191
BoldWhite=230,230,230
Font=ComicShanns Nerd Font
FontHeight=12
Term=xterm-256color
Locale=ko_KR
Charset=UTF-8
FontSmoothing=default
AllowBlinking=no
BoldAsFont=no
CursorType=block
CursorBlinks=yes
BellTaskbar=no
BellType=0
BellFlash=no
FontWeight=400
FontIsBold=no
Transparency=medium

21
scripts/install_fonts.ps1 Normal file
View File

@ -0,0 +1,21 @@
pushd c:\tools
$a = "FiraCode","ComicShannsMono","Mononoki"
foreach($i in $a){
curl -s https://api.github.com/repos/ryanoasis/nerd-fonts/releases/latest | grep "browser_download_url.*$i.zip" | cut -d : -f 2,3 | tr -d """" | wget -qi -
}
$files = Get-ChildItem .\*.zip
mkdir Fonts
foreach($file in $files){
unzip -o $file -d .\Fonts
}
cp Fonts\*.ttf c:\windows\fonts
cp Fonts\*.otf c:\windows\fonts
popd

View File

@ -0,0 +1,6 @@
$a = "FiraCode","ComicShannsMono","Mononoki"
foreach($i in $a){
curl -s https://api.github.com/repos/ryanoasis/nerd-fonts/releases/latest | grep "browser_download_url.*$i.zip" | cut -d : -f 2,3 | tr -d """" | wget -qi -
}