batipanel 0.4.8 → 0.4.10
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 +9 -14
- package/package.json +1 -1
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.4.
|
|
1
|
+
0.4.10
|
package/install.sh
CHANGED
|
@@ -610,19 +610,14 @@ echo " b layouts # Show available layouts"
|
|
|
610
610
|
echo " b config layout 7panel # Change default layout"
|
|
611
611
|
echo " b theme # List/change color themes"
|
|
612
612
|
echo ""
|
|
613
|
-
# auto-apply:
|
|
614
|
-
if
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
echo "Starting $USER_SHELL..."
|
|
620
|
-
exec "$SHELL" -l
|
|
621
|
-
;;
|
|
622
|
-
*)
|
|
623
|
-
echo "Run this to apply: source $SHELL_RC"
|
|
624
|
-
;;
|
|
625
|
-
esac
|
|
613
|
+
# auto-apply: launch a fresh login shell so aliases work immediately
|
|
614
|
+
# skip if running inside curl|bash (web-install.sh handles this)
|
|
615
|
+
if [ -t 0 ] && [ -z "${BATIPANEL_NO_EXEC:-}" ]; then
|
|
616
|
+
echo "Launching new shell to apply changes..."
|
|
617
|
+
cd "$HOME"
|
|
618
|
+
exec "$SHELL" -l
|
|
626
619
|
else
|
|
627
|
-
echo "
|
|
620
|
+
echo "To start using batipanel, run:"
|
|
621
|
+
echo ""
|
|
622
|
+
echo " source $SHELL_RC && b"
|
|
628
623
|
fi
|
package/package.json
CHANGED