mirror of
https://github.com/FelixKratz/SketchyBar
synced 2024-11-23 20:03:10 +00:00
9 lines
303 B
Bash
Executable file
9 lines
303 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
COUNT=$(curl https://github.com/users/FelixKratz/contributions | grep $(date '+%Y-%m-%d') | sed -nr 's/.*data-count=\"([^"]+).*/\1/p')
|
|
|
|
if [ $COUNT -gt 0 ]; then
|
|
spacebar -m set githubIndicator icon_color 0xaa48aa2a
|
|
else
|
|
spacebar -m set githubIndicator icon_color 0xaaffffff
|
|
fi
|