We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Wrote a watch bash script. Hope it will be helpful to somebody ❤️ Note that this is kind of CPU eager.
watch.sh
#!/bin/bash # ANSI color codes RED='\033[0;31m' NC='\033[0m' # No Color while true do # Get the current time TIME=$(date +"%Y-%m-%d %H:%M:%S") # Execute shiroa build if shiroa build >/dev/null 2>&1; then echo "[shiroa watch @ ($TIME)] - Build Successful" else echo -e "${RED}[shiroa watch @ ($TIME)] - Build Failed${NC}" fi # Wait 1 seconds before the next iteration sleep 1 done
The text was updated successfully, but these errors were encountered:
I guess you should write and preview your book document by existing editor integrations instead of relying on some shiroa watch. Please check https://github.com/Myriad-Dreamin/shiroa?tab=readme-ov-file#setup-for-writing-your-book.
shiroa watch
Sorry, something went wrong.
No branches or pull requests
Wrote a watch bash script.
Hope it will be helpful to somebody ❤️
Note that this is kind of CPU eager.
watch.sh
The text was updated successfully, but these errors were encountered: