diff options
| author | Danilo M. <danix@danix.xyz> | 2026-09-12 10:10:14 +0200 |
|---|---|---|
| committer | Danilo M. <danix@danix.xyz> | 2026-09-12 10:10:14 +0200 |
| commit | 10d955193b6778cfb26cc601b05aa65bff1810df (patch) | |
| tree | 49b8383fde99b8636fe2a8bfede5e25c3c520c62 /mail-overview/shell.qml | |
| parent | 15367430ddafd45c59310364234fa3ceefee3844 (diff) | |
| download | quickshell-10d955193b6778cfb26cc601b05aa65bff1810df.tar.gz quickshell-10d955193b6778cfb26cc601b05aa65bff1810df.zip | |
feat(mail-overview): component skeleton with the keepalive window
Nothing is drawn yet. This commit exists on its own because the thing most
likely to be wrong at this stage is invisible: a config whose only window is
hidden exits straight after logging Configuration Loaded, reporting no error,
and the symptom is a keybind that appears to do nothing.
Theme.qml is a verbatim copy of the one in appearance. It is a fallback for
before the generated palette is read, not a palette to grow; deduplicating
the four copies is a separate change.
Not yet run: the user runs the shell themselves, so loading and IPC are
verified in their session rather than here.
Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01WWL8JYHu7yhAdtx5pU9PMU
Diffstat (limited to 'mail-overview/shell.qml')
| -rw-r--r-- | mail-overview/shell.qml | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/mail-overview/shell.qml b/mail-overview/shell.qml new file mode 100644 index 0000000..cd2e907 --- /dev/null +++ b/mail-overview/shell.qml @@ -0,0 +1,24 @@ +// Copyright (C) 2026 Danilo M. <danix@danix.xyz> +// +// This program is free software; you can redistribute it and/or modify +// it under the terms of the GNU General Public License version 2 as +// published by the Free Software Foundation. +// +// This program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. + +import Quickshell +import Quickshell.Io + +ShellRoot { + MailPanel { id: panel } + + IpcHandler { + target: "mail" + function toggle() { panel.toggle(); } + function show() { panel.show(); } + function close() { panel.close(); } + } +} |
