18 lines
477 B
Bash
Executable file
18 lines
477 B
Bash
Executable file
#!/bin/bash -e
|
|
|
|
if [[ -f /tmp/output.png ]]
|
|
then
|
|
feh --no-fehbg --bg-center /tmp/output.png
|
|
fi
|
|
|
|
cd ~/Images/clocks/Current/
|
|
|
|
date="date -d now+1minute"
|
|
|
|
month=$($date +%-m)
|
|
day=$($date +%-d)
|
|
weekday=$($date +%-u)
|
|
hour=$(( ($($date +%-H)%12)*5 + $($date +%-M)/12))
|
|
minute=$($date +%-M)
|
|
|
|
convert "bg.jpg" "month${month}.png" -composite "day${day}.png" -composite "weekday${weekday}.png" -composite "hour${hour}.png" -composite "minute${minute}.png" -composite "/tmp/output.png"
|