diff options
author | Jasper Ras <jaspert.ras@gmail.com> | 2025-08-03 16:49:02 +0200 |
---|---|---|
committer | Jasper Ras <jaspert.ras@gmail.com> | 2025-08-03 16:49:02 +0200 |
commit | 8800edbb04ae0e1a015c1aa7aeea62174369a401 (patch) | |
tree | ee81a27d8bb11a8e08a655c64a1e44a5b4db57cd | |
parent | 8bde51ba29aa23d1b6e01826b6af720b4256bd78 (diff) |
vault backup: 2025-08-03 16:49:02
-rw-r--r-- | Item Size Position.md | 1 | ||||
-rw-r--r-- | Layouts.md | 11 | ||||
-rw-r--r-- | Quickshell.md | 5 |
3 files changed, 16 insertions, 1 deletions
diff --git a/Item Size Position.md b/Item Size Position.md index 2479688..541b04d 100644 --- a/Item Size Position.md +++ b/Item Size Position.md @@ -37,4 +37,3 @@ Item.childrenRect represents the actual geometry of all child items, not the mpl Use [MarginWrapperManager](https://quickshell.org/docs/types/Quickshell.Widgets/MarginWrapperManager) to handle size and position of container and a single child item. -## Layouts 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 c801fee..d199cd1 100644 --- a/Quickshell.md +++ b/Quickshell.md @@ -6,6 +6,10 @@ https://quickshell.org +QML Types: https://doc.qt.io/qt-6/qtquick-qmlmodule.html + +https://htmlcolorcodes.com + XDG standard config paths. Looks for `shell.qml` in all sub-directories unless root dir has one. Target specific config using `quickshell -c configname`. ## Windows @@ -21,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) |