batipanel 0.4.37 → 0.4.38
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/VERSION +1 -1
- package/package.json +1 -1
- package/scripts/install/fonts.sh +17 -2
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.4.
|
|
1
|
+
0.4.38
|
package/package.json
CHANGED
package/scripts/install/fonts.sh
CHANGED
|
@@ -40,9 +40,24 @@ setup_fonts_and_terminal() {
|
|
|
40
40
|
# install Nerd Font via Homebrew
|
|
41
41
|
if command -v brew &>/dev/null; then
|
|
42
42
|
if ! brew list --cask font-meslo-lg-nerd-font &>/dev/null 2>&1; then
|
|
43
|
-
echo "Installing Nerd Font (MesloLGS NF) for powerline glyphs..."
|
|
44
|
-
|
|
43
|
+
echo " Installing Nerd Font (MesloLGS NF) for powerline glyphs..."
|
|
44
|
+
# ensure cask-fonts tap is available (older brew needs manual tap)
|
|
45
|
+
if ! brew tap | grep -q "homebrew/cask-fonts" 2>/dev/null; then
|
|
46
|
+
brew tap homebrew/cask-fonts 2>/dev/null || true
|
|
47
|
+
fi
|
|
48
|
+
if brew install --cask font-meslo-lg-nerd-font; then
|
|
49
|
+
echo " Nerd Font installed"
|
|
50
|
+
else
|
|
51
|
+
echo " Warning: Nerd Font install via brew failed."
|
|
52
|
+
echo " Try manually: brew install --cask font-meslo-lg-nerd-font"
|
|
53
|
+
fi
|
|
54
|
+
else
|
|
55
|
+
echo " Nerd Font already installed"
|
|
45
56
|
fi
|
|
57
|
+
else
|
|
58
|
+
echo " Warning: Homebrew not found — cannot install Nerd Font automatically."
|
|
59
|
+
echo " Install manually: https://github.com/ryanoasis/nerd-fonts/releases"
|
|
60
|
+
echo " Look for 'MesloLGS Nerd Font' and install the .ttf files."
|
|
46
61
|
fi
|
|
47
62
|
|
|
48
63
|
# auto-configure Apple Terminal: create/update "batipanel" profile
|