mirror of
https://github.com/luigieai/homelab.git
synced 2025-06-04 23:16:35 -03:00
glance: add steam discounts
This commit is contained in:
parent
38d7f8f5a6
commit
4e7127dde5
1 changed files with 18 additions and 2 deletions
|
@ -33,7 +33,23 @@
|
|||
- UCwhYSrP7BT480a75aFAvIeg # NotHens333
|
||||
- UCXuqSBlHAE6Xw-yeJA0Tunw # Linus Tech Tips
|
||||
- UCR-DXc1voovS8nhAvccRZhg # Jeff Geerling
|
||||
|
||||
- type: custom-api
|
||||
title: Steam Specials
|
||||
cache: 12h
|
||||
url: https://store.steampowered.com/api/featuredcategories?cc=br
|
||||
template: |
|
||||
<ul class="list list-gap-10 collapsible-container" data-collapse-after="5">
|
||||
{{ range .JSON.Array "specials.items" }}
|
||||
<li>
|
||||
<a class="size-h4 color-highlight block text-truncate" href="https://store.steampowered.com/app/{{ .Int "id" }}/">{{ .String "name" }}</a>
|
||||
<ul class="list-horizontal-text">
|
||||
<li>{{ .Int "final_price" | toFloat | mul 0.01 | printf "R$%.2f" }}</li>
|
||||
{{ $discount := .Int "discount_percent" }}
|
||||
<li{{ if ge $discount 40 }} class="color-positive"{{ end }}>{{ $discount }}% off</li>
|
||||
</ul>
|
||||
</li>
|
||||
{{ end }}
|
||||
</ul>
|
||||
- size: small
|
||||
widgets:
|
||||
- type: weather
|
||||
|
@ -42,7 +58,7 @@
|
|||
hour-format: 12h # alternatively "24h"
|
||||
# Optionally hide the location from being displayed in the widget
|
||||
# hide-location: true
|
||||
|
||||
|
||||
- type: twitch-channels
|
||||
channels:
|
||||
- luigimarqs
|
||||
|
|
Loading…
Add table
Reference in a new issue