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.

17 line
406B

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