mirror of
http://github.com/JaeUs3792/dotfiles
synced 2025-12-16 00:51:35 +09:00
Compare commits
4 Commits
b1128126f4
...
5ebf4d23bb
| Author | SHA1 | Date | |
|---|---|---|---|
| 5ebf4d23bb | |||
| b6dc73188c | |||
| cefeb45dce | |||
| d10e8aa916 |
37
.minttyrc
Normal file
37
.minttyrc
Normal 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
21
scripts/install_fonts.ps1
Normal 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
|
||||||
|
|
||||||
|
|
||||||
6
scripts/update_trilium.ps1
Normal file
6
scripts/update_trilium.ps1
Normal 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 -
|
||||||
|
}
|
||||||
|
|
||||||
Reference in New Issue
Block a user