From f20d3dcfc9f1d37c6f015a00cbe2bb1875f76e12 Mon Sep 17 00:00:00 2001 From: Iain Majer Date: Thu, 10 Sep 2026 19:48:36 +0100 Subject: [PATCH 1/2] Update shell-qml-and-shellroot.md with theme example Needs the whitespace else page formatting breaks --- docs/part-2-quickshell/shell-qml-and-shellroot.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/part-2-quickshell/shell-qml-and-shellroot.md b/docs/part-2-quickshell/shell-qml-and-shellroot.md index fef3f6a..cc8fab4 100644 --- a/docs/part-2-quickshell/shell-qml-and-shellroot.md +++ b/docs/part-2-quickshell/shell-qml-and-shellroot.md @@ -76,6 +76,7 @@ The `settings` property (a `QuickshellSettings` object, read-only) is inherited Here is a shell with a theme declared on `ShellRoot` and consumed by two windows. + ```qml import Quickshell From 07b8eb99a02e951138e1807c62a984a8c3deb8cf Mon Sep 17 00:00:00 2001 From: Iain Majer Date: Thu, 10 Sep 2026 19:58:40 +0100 Subject: [PATCH 2/2] More broken formatting Added more whitespaces to fix website render --- docs/part-2-quickshell/config-structure-and-imports.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/part-2-quickshell/config-structure-and-imports.md b/docs/part-2-quickshell/config-structure-and-imports.md index 9f92ed9..6ded736 100644 --- a/docs/part-2-quickshell/config-structure-and-imports.md +++ b/docs/part-2-quickshell/config-structure-and-imports.md @@ -68,6 +68,7 @@ The `import Quickshell` statement is the only one you must write. Everything els Split the shell from the previous chapter into three files. + ```qml // Theme.qml pragma Singleton @@ -85,6 +86,7 @@ QtObject { Create a panel component file: + ```qml // Panel.qml import QtQuick @@ -110,6 +112,7 @@ PanelWindow { And the root shell file: + ```qml // shell.qml import Quickshell @@ -127,6 +130,7 @@ Notice that `Panel.qml` is used as `Panel {}` in `shell.qml` without any import For components in subdirectories, use relative import paths. + ```qml // widgets/Clock.qml import QtQuick