You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

workspace.focus.fish.j2 395B

4 vuotta sitten
3 vuotta sitten
2 vuotta sitten
4 vuotta sitten
3 vuotta sitten
2 vuotta sitten
2 vuotta sitten
12345678910111213141516
  1. #!/usr/bin/fish
  2. {{ ansible_managed | comment }}
  3. {% if workspaces[workspace].type is defined %}
  4. {% if "vncviewer" in workspaces[workspace].type %}
  5. i3-msg mode remote
  6. {% endif %}
  7. {% endif %}
  8. {% if workspaces[workspace].activity is defined %}
  9. {% if workspaces[workspace].activity %}
  10. timer begin_activity "{{workspaces[workspace].activity}}"
  11. {% else %}
  12. timer end_activity
  13. {% endif %}
  14. {% endif %}