Steam

{% if recent.data.games %}

Recently played:

{% for g in recent.data.games %}
{{ g.name }}

Played last 2 weeks: {{ tmsmp(g.playtime_2weeks*60) }}

Total played: {{ tmsmp(g.playtime_linux_forever*60) }} (L) + {{ tmsmp(g.playtime_windows_forever*60) }} (W) = {{ tmsmp(g.playtime_forever*60) }} (T)

{% endfor %}

Last updated: {{ rtmsmp(owned.last_updated) }} ago

{% endif %} {% if owned.data.games %}

Top played games:

{% set owned_games = owned.data.games | sort(attribute="playtime_forever", reverse=true) %} {% for g in owned_games[:5] %}
{{ g.name }}

Total played: {{ tmsmp(g.playtime_linux_forever*60) }} (L) + {{ tmsmp(g.playtime_windows_forever*60) }} (W) = {{ tmsmp(g.playtime_forever*60) }} (T)

{% if g.rtime_last_played != 0 %}

Last played: {{ utmsmp(g.rtime_last_played) }}

{% endif %}
{% endfor %}

Last updated: {{ rtmsmp(owned.last_updated) }} ago

{% endif %}