dot/.local/bin/i3scripts/contrib/time

14 lines
259 B
Plaintext
Raw Normal View History

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