dot/.local/bin/i3scripts/contrib/date

14 lines
259 B
Plaintext
Raw Normal View History

2020-02-19 15:55:35 +00:00
#!/usr/bin/env bash
################################
# Shows current date
#
# @param {String} format: The format of the date
# @return {Date}: Current date
################################
format=${BLOCK_INSTANCE:-"%Y-%m-%d"}
date +"$format"
date +"%m-%d"