Files
Panama/config/dot/quickshell/modules/settings/ApplicationsPage.qml
T
Gabriel Brown 6377bfb8fd Route the Applications page and add its settings
Wires the schema entries and routing the codex agent needs for default
applications, weather, vitals refresh, notification timing, and capture,
so its pages can be written against keys that already exist.

Capture directories and encoder arguments are enums rather than free
text. Both are handed to a recorder process, and a settings page has no
reason to expose an arbitrary string there.

ApplicationsPage.qml is a placeholder so the page id can be routed,
registered, and searchable before the real page lands. It is owned by
the other agent and expected to be replaced wholesale.

Claude-Session: https://claude.ai/code/session_01BRvzt4H8XXLPVH5MyYdk9L
2026-08-18 00:51:10 -04:00

20 lines
615 B
QML

// Applications — PLACEHOLDER.
//
// Owned by the codex agent, which is building default-application handling and
// the autostart list. This stub exists only so the page id can be routed,
// registered, and searchable before that work lands; it is expected to be
// replaced wholesale rather than edited.
import QtQuick
import qs.config
SettingsPage {
title: "Applications"
lede: "Default applications and what starts with your session."
SettingsCard {
title: "Being built"
subtitle: "Default browser, mail, files, and terminal, plus the autostart list, are on their way."
}
}