Skip to content

Instantly share code, notes, and snippets.

@Arcath
Created December 12, 2011 10:00
Show Gist options
  • Save Arcath/1466330 to your computer and use it in GitHub Desktop.
Save Arcath/1466330 to your computer and use it in GitHub Desktop.
Seasonal Greeter for BGinfo
' Very Basic Seasonal greeter for BGInfo
' Add a case for each month, and then a sub select for the day (if needed)
Select Case (DatePart("m", now))
case 1 ' January
Select Case (DatePart("d", now))
case 1, 2, 3, 4, 5, 6, 7, 8, 9
Echo("Happy New Year!")
End Select
case 12 ' December
Echo("Merry Christmas")
End Select
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment