dotfiles/dot_local/bin/executable_bar_date

8 lines
114 B
Text
Raw Normal View History

#!/usr/bin/env bash
if [[ -x "$(command -v ddate)" ]]; then
ddate +'%{%A, %b %d%}'
else
date +'%A, %b %d'
fi