- Link to original version: http://tracesof.net/uebersicht-widgets/#sys-mon-set
28 lines
390 B
CoffeeScript
28 lines
390 B
CoffeeScript
command: "pmset -g batt | grep -o '[0-9]*%'"
|
|
|
|
refreshFrequency: 60000
|
|
|
|
style: """
|
|
bottom: 135px
|
|
left: 10px
|
|
color: #ccc
|
|
font-family: Helvetica Neue
|
|
|
|
div
|
|
display: block
|
|
text-shadow: 0 0 1px rgba(#000, 0.5)
|
|
font-size: 24px
|
|
font-weight: 100
|
|
|
|
|
|
"""
|
|
|
|
|
|
render: -> """
|
|
<div class='battery'></div>
|
|
"""
|
|
|
|
update: (output, domEl) ->
|
|
$(domEl).find('.battery').html(output)
|
|
|