🚧 Under Construction 🚧
import time
print("Away Mode Activated!")
print("I'm taking a short break...")
try:
while True:
print("Zzz... (Press Ctrl+C to exit)")
time.sleep(5) # Sleep for 5 seconds
except KeyboardInterrupt:
pass