dotfiles/dot_local/bin/executable_bar_date

8 lines
131 B
Text
Raw Normal View History

#!/usr/bin/env bash
if [[ -x "$(command -v ddate)" ]]; then
2022-10-25 20:07:06 +02:00
ddate +"%{%a, %b %e%N%nCelebrate %H!%}"
else
date +'%A, %b %d'
fi