diff options
-rw-r--r-- | Layouts.md | 11 | ||||
-rw-r--r-- | Quickshell.md | 6 |
2 files changed, 17 insertions, 0 deletions
diff --git a/Layouts.md b/Layouts.md new file mode 100644 index 0000000..6e972b0 --- /dev/null +++ b/Layouts.md @@ -0,0 +1,11 @@ +[[Quickshell]] + +--- + +# Layouts + +https://doc.qt.io/qt-6/qtquicklayouts-overview.html + +`import QtQuick.Layouts` + +For example to stack two pieces of `Text` use a `ColumnLayout`. diff --git a/Quickshell.md b/Quickshell.md index 2ff8d48..eb142f2 100644 --- a/Quickshell.md +++ b/Quickshell.md @@ -3,10 +3,15 @@ --- https://quickshell.org +https://htmlcolorcodes.com + +QML Types: https://doc.qt.io/qt-6/qtquick-qmlmodule.html + When launching `quickshell` it wil scan XDG_CONFIG_DIRS for `shell.qml` that it will load unless `-c` is specified. It will scan sub-directories if no `shell.qml` is found in the root directory. Quickshell expands [[QtQuick]] with functionalities useful for building shells. + ## Windows Requires `import Quickshell`. Types: @@ -20,6 +25,7 @@ Types: Set `id: somename` to reference by `somename`, ie `somename.text = "blaat"` Strings can be concat using `+` + ## Processes Requires `import Quickshell.Io` (NOTE the capital I in Io) |