---
extends: base.j2
default_block: main
title: Applications
description: Applications of woob
listable: false
---
Applications
{% from "applications.j2" import render_application with context %}
Graphical
Graphical applications using the Qt toolkit.
{% for res in resource.node.walk_resources_sorted_by_name_graphical() %}
{{ render_application(res) }}
{% endfor %}
Console
Textual applications, both command-line and REPL.
{% for res in resource.node.walk_resources_sorted_by_name_console() %}
{{ render_application(res) }}
{% endfor %}
Daemon
Applications meant to run in background.
{% for res in resource.node.walk_resources_sorted_by_name_daemon() %}
{{ render_application(res) }}
{% endfor %}
{% for res in resource.node.walk_resources_sorted_by_name_nocat() %}
UNCATEGORIZED {{ res.name }}
{% endfor %}