- Link to original version: http://tracesof.net/uebersicht-widgets/#sys-mon-set
24 lines
335 B
CoffeeScript
24 lines
335 B
CoffeeScript
format = '%d %a %H:%M'
|
|
|
|
command: "date +\"#{format}\""
|
|
|
|
# the refresh frequency in milliseconds
|
|
refreshFrequency: 30000
|
|
|
|
render: (output) -> """
|
|
<h1>#{output}</h1>
|
|
"""
|
|
|
|
style: """
|
|
color: #eee
|
|
font-family: Helvetica Neue
|
|
left: 10px
|
|
bottom: 50px
|
|
|
|
h1
|
|
font-size: 5em
|
|
font-weight: 100
|
|
margin: 0
|
|
padding: 0
|
|
"""
|