Compare commits

..

2 Commits

Author SHA1 Message Date
ec03e01dbb fix terminal font for vscode 2025-11-14 10:51:53 +08:00
c6ca5271e8 case tar.xz in extract util 2025-11-14 10:51:22 +08:00
2 changed files with 2 additions and 1 deletions

View File

@@ -3,6 +3,7 @@ if [ -f "$1" ]; then
case "$1" in
*.tar.bz2) tar -jxvf "$1" ;;
*.tar.gz) tar -zxvf "$1" ;;
*.tar.xz) tar -Jxvf "$1" ;;
*.bz2) bunzip2 "$1" ;;
*.dmg) hdiutil mount "$1" ;;
*.gz) gunzip "$1" ;;

View File

@@ -102,7 +102,7 @@
// terminal
//----------------------------------------------------------------
"terminal.integrated.fontFamily": "Jetbrains Mono, MesloLGS NF, Ubuntu Mono",
"terminal.integrated.fontFamily": "JetBrainsMono Nerd Font, MesloLGS NF, Ubuntu Mono",
"terminal.integrated.fontSize": 13,
"terminal.integrated.cursorStyle": "line",
"terminal.integrated.defaultProfile.linux": "zsh",