This script automates checking if you have been taken off the Gemini 3 waitlist.
It attempts to use the gemini-3-pro-preview model and reacts based on the result:
- If it fails (404 Error): It prints "Still waitlisted" to the terminal.
- If it succeeds (No 404): It triggers a desktop notification to alert you immediately.
Make it executable
chmod +x ~/check_gemini_access.sh
run it!
~/check_gemini_access.sh
If you want to add this to a cronjob, you might need to add
# Required for notifications to work via Cron
export DISPLAY=:0
export DBUS_SESSION_BUS_ADDRESS="unix:path=/run/user/$(id -u)/bus"