diff --git a/.gitignore b/.gitignore index b39fac2..02901a7 100644 --- a/.gitignore +++ b/.gitignore @@ -5,7 +5,7 @@ # typegen /typegen/target /build -/content/docs/types/QuickShell* +/content/docs/types/Quickshell* /data/modules # hugo diff --git a/Justfile b/Justfile index f89e6c4..035aa1b 100644 --- a/Justfile +++ b/Justfile @@ -1,17 +1,17 @@ clean: rm -rf build - rm -rf data/modules/QuickShell - rm -rf content/docs/types/QuickShell - rm -rf data/modules/QuickShell.Wayland - rm -rf content/docs/types/QuickShell.Wayland + rm -rf data/modules/Quickshell + rm -rf content/docs/types/Quickshell + rm -rf data/modules/Quickshell.Wayland + rm -rf content/docs/types/Quickshell.Wayland typedocs: clean cd typegen && cargo build mkdir -p build/types/types - ./typegen/target/debug/typegen gentypes ../src/core/module.md build/types/types/QuickShell.json - ./typegen/target/debug/typegen gentypes ../src/wayland/module.md build/types/types/QuickShell.Wayland.json - sh -c './typegen/target/debug/typegen gendocs ../src/core/module.md data/modules/QuickShell content/docs/types/QuickShell types/* build/types/types/*' - sh -c './typegen/target/debug/typegen gendocs ../src/wayland/module.md data/modules/QuickShell.Wayland content/docs/types/QuickShell.Wayland types/* build/types/types/*' + ./typegen/target/debug/typegen gentypes ../src/core/module.md build/types/types/Quickshell.json + ./typegen/target/debug/typegen gentypes ../src/wayland/module.md build/types/types/Quickshell.Wayland.json + sh -c './typegen/target/debug/typegen gendocs ../src/core/module.md data/modules/Quickshell content/docs/types/Quickshell types/* build/types/types/*' + sh -c './typegen/target/debug/typegen gendocs ../src/wayland/module.md data/modules/Quickshell.Wayland content/docs/types/Quickshell.Wayland types/* build/types/types/*' serve: typedocs hugo server --buildDrafts --disableFastRender diff --git a/content/_index.md b/content/_index.md index 6ffa354..c251f06 100644 --- a/content/_index.md +++ b/content/_index.md @@ -1,8 +1,8 @@ +++ +++ -# QuickShell -QuickShell is a fully user customizable desktop shell based on QtQuick. +# Quickshell +Quickshell is a fully user customizable desktop shell based on QtQuick. {{< cards >}} {{< card link="/docs/types" title="Type Reference" >}} diff --git a/content/docs/types/_index.md b/content/docs/types/_index.md index 63230b5..e0a0234 100644 --- a/content/docs/types/_index.md +++ b/content/docs/types/_index.md @@ -2,6 +2,6 @@ title = "Type Reference" +++ -Index of all QuickShell types. See [the QtQuick type reference](https://doc.qt.io/qt-6/qtquick-qmlmodule.html) for builtin Qt types. +Index of all Quickshell types. See [the QtQuick type reference](https://doc.qt.io/qt-6/qtquick-qmlmodule.html) for builtin Qt types. {{< qmlmodulelisting >}} diff --git a/hugo.toml b/hugo.toml index 6ea2f68..4404b42 100644 --- a/hugo.toml +++ b/hugo.toml @@ -1,6 +1,6 @@ baseURL = "https://example.org/" languageCode = "en-us" -title = "QuickShell" +title = "Quickshell" theme = "hextra" [params.theme]