Th3R0b on DeviantArthttps://www.deviantart.com/th3r0b/art/Gay-Calendar-350884999Th3R0b

Deviation Actions

Th3R0b's avatar

Gay Calendar

By
Published:
1.6K Views

Description

a stupid calendar script that displays a row of numbers....
...use w/ be.shell in a label. If you have no idea how
just consult the docs: [link]

see in action here: [link]
© 2013 - 2024 Th3R0b
Comments40
Join the community to add your comment. Already a deviant? Log In
SienarDesign's avatar
What do you need Savedday and prevday for?

date --date="today"
date --date="yestergay" ;-) I acutally just typo'd that =)
and also:
date --date="4 days ago"
date --date="next week" ... and whatnot ;-)

Also try to avoid process calls ("date") by eg:
DATE="`date +%e:%m::%Y`"
YEAR="${__DATE##*:}"
DAY="${__DATE%%:*}"
MONTH=${__DATE#*:}
MONTH=${MONTH%:*}

If you pass
date --date="${YEAR}-${MONTH}-${I}" +%a
you can omit the [test] for padding demands