mirror of
https://github.com/mr0xb/dotfiles.git
synced 2026-08-27 19:34:57 -04:00
9 lines
182 B
Shell
Executable file
9 lines
182 B
Shell
Executable file
#!/bin/bash
|
|
|
|
# Enhanced clock script with better date formatting
|
|
|
|
DATE=$(date '+%a %b %d')
|
|
TIME=$(date '+%H:%M')
|
|
|
|
sketchybar --set "$NAME" icon="$(date '+%d')" label="$DATE $TIME"
|
|
|