We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d8edc29 commit 2897b4aCopy full SHA for 2897b4a
scripts/install.sh
@@ -163,17 +163,11 @@ echo ""
163
echo -e "Location: ${BOLD}$INSTALL_DIR/$APP_NAME.app${NC}"
164
echo ""
165
166
-# Prompt to launch
167
-echo -e -n "Launch LyricGlow now? [Y/n] "
168
-read -r REPLY
169
-if [[ "$REPLY" =~ ^[Nn]$ ]]; then
170
- echo ""
171
- echo -e "To launch later: ${BOLD}open -a LyricGlow${NC}"
172
-else
173
- echo -e "${BLUE}*${NC} Launching LyricGlow..."
174
- open "$INSTALL_DIR/$APP_NAME.app"
175
-fi
+# Launch the app automatically (non-interactive install)
+echo -e "${BLUE}*${NC} Launching LyricGlow..."
+open "$INSTALL_DIR/$APP_NAME.app"
176
177
178
echo -e "Enjoy your music with synchronized lyrics!"
+echo -e "To quit: Click the menu bar icon → Quit"
179
0 commit comments