mirror of
https://github.com/Ajetski/dotfiles.git
synced 2025-09-30 11:33:18 -09:00
23 lines
436 B
Plaintext
23 lines
436 B
Plaintext
#[click]
|
|
#full_text=Click me!
|
|
#command=echo "Got clicked with button $button"
|
|
#color=#F79494
|
|
|
|
# Update hour every 15 mins
|
|
[weather]
|
|
command=curl -Ss 'https://wttr.in?0&T&Q&M' | cut -c 16- | head -2 | xargs echo
|
|
interval=900
|
|
color=#A4C2F4
|
|
|
|
# # Query my default IP address only on startup
|
|
[ip]
|
|
command=hostname -i | awk '{ print "IP:" $1 }'
|
|
interval=once
|
|
color=#91E78B
|
|
|
|
# # Update time every 5 seconds
|
|
[time]
|
|
command=date +%T
|
|
interval=1
|
|
|