This repository has been archived on 2019-02-28. You can view files and clone it, but cannot push or open issues or pull requests.
simple-i3blocks/modules/datetime.sh

9 lines
236 B
Bash

if [[ $BLOCK_INSTANCE =~ pm ]]; then
LONG_TEXT=$(date '+%A %-d.%-m.%Y W%V, %-I:%M:%S%p')
SHORT_TEXT=$(date '+%-I:%M%p')
else
LONG_TEXT=$(date '+%A %-d.%-m.%Y W%V, %-H:%M:%S')
SHORT_TEXT=$(date '+%-H:%M')
fi
LOAD=false