batipanel 0.4.29 → 0.4.30
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/install.sh +6 -0
- package/package.json +1 -1
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.4.
|
|
1
|
+
0.4.30
|
package/install.sh
CHANGED
|
@@ -613,6 +613,12 @@ if [ "$NEED_LOCAL_BIN_PATH" = "1" ]; then
|
|
|
613
613
|
fi
|
|
614
614
|
fi
|
|
615
615
|
|
|
616
|
+
# === 8b. enable powerline glyphs by default ===
|
|
617
|
+
if ! grep -qF 'BATIPANEL_ICONS' "$SHELL_RC" 2>/dev/null; then
|
|
618
|
+
echo 'export BATIPANEL_ICONS="1"' >> "$SHELL_RC"
|
|
619
|
+
echo " Enabled powerline glyphs (BATIPANEL_ICONS=1)"
|
|
620
|
+
fi
|
|
621
|
+
|
|
616
622
|
# === 9. register tab completion ===
|
|
617
623
|
if [ "$USER_SHELL" = "zsh" ]; then
|
|
618
624
|
# zsh: install completion + ensure compinit runs
|
package/package.json
CHANGED