9 lines
240 B
Bash
9 lines
240 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 '+%-d %-H:%M')
|
|
fi
|
|
LOAD=false
|