feat: add cyberpunk logo and auto-execute after install

This commit is contained in:
dacrab
2024-12-27 13:50:01 +02:00
parent b3e748554f
commit 9d41a9a2c7
4 changed files with 46 additions and 2 deletions

View File

@@ -99,7 +99,14 @@ main() {
sudo mv "$TMP_DIR/cursor-id-modifier" "$INSTALL_DIR/"
echo -e "${GREEN}Installation completed successfully!${NC}"
echo -e "${BLUE}You can now run: cursor-id-modifier${NC}"
echo -e "${BLUE}Running cursor-id-modifier...${NC}"
# Run the program
export AUTOMATED_MODE=1
if ! cursor-id-modifier; then
echo -e "${RED}Failed to run cursor-id-modifier${NC}"
exit 1
fi
}
main