Skip to content

Instantly share code, notes, and snippets.

@ulasozguler
Created June 8, 2015 19:00
Show Gist options
  • Save ulasozguler/027ea0d8d078162e8575 to your computer and use it in GitHub Desktop.
Save ulasozguler/027ea0d8d078162e8575 to your computer and use it in GitHub Desktop.
Changes OS X menu bar time format to whatever the fuck you want.
#!/bin/bash
killall -KILL SystemUIServer
killall -KILL SystemUIServer &> /dev/null
echo "Press CTRL+C when format changes."
if [ -z "$1" ]; then format="YYYY.MM.dd HH:mm:ss"; else format="$1"; fi
while true
do
defaults write com.apple.menuextra.clock "DateFormat" "$format"
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment