mirror of
https://github.com/WarrenHood/dotfiles.git
synced 2025-04-29 21:04:59 +01:00
23 lines
618 B
Plaintext
23 lines
618 B
Plaintext
{% assign mine_open = '%{F#000000}%{B#FFFFFF}' %}
|
|
{% assign mine_close = '%{B-}%{F-}' %}
|
|
{% assign visible_open = '%{F#000000}%{B#999999}' %}
|
|
{% assign visible_close = '%{B-}%{F-}' %}
|
|
{% assign busy_open = '%{F#999999}%{B#333333}' %}
|
|
{% assign busy_close = '%{B-}%{F-}' %}
|
|
|
|
{% for tag in workspace.tags %}
|
|
{% if tag.mine %}
|
|
{{mine_open}} {{ tag.name }} {{mine_close}}
|
|
{% elsif tag.visible %}
|
|
{{visible_open}} {{ tag.name }} {{visible_close}}
|
|
{% elsif tag.busy %}
|
|
{{busy_open}} {{ tag.name }} {{busy_close}}
|
|
{% else %}
|
|
{{ tag.name }}
|
|
{% endif %}
|
|
{% endfor %}
|
|
%{c}
|
|
{{ window_title }}
|
|
%{r}
|
|
{{ localtime }}
|