From 0da5fe781ae9785fa65ae32b93a4ca88b5f16abf Mon Sep 17 00:00:00 2001 From: outfoxxed Date: Sat, 5 Jul 2025 02:27:45 -0700 Subject: [PATCH 1/2] note root:/ paths break lsp and singletons --- src/guide/introduction.mdx | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/guide/introduction.mdx b/src/guide/introduction.mdx index 924da80..305e76c 100644 --- a/src/guide/introduction.mdx +++ b/src/guide/introduction.mdx @@ -24,6 +24,13 @@ A specific configuration can be picked using the `--config` or `-c` argument to Configs located at other paths outside XDG standard, including raw qml files, can be run with `--path` or `-p`. +> [!CAUTION] +> Many users use root imports, in the form `import "root:/path/to/module"`. These are an old +> Quickshell feature that will break the LSP and singletons. Keep that in mind if you decide +> to use them. +> +> A replacement without these issues is planned. + ## Creating Windows Quickshell has two main window types available: From ff316cdcd81992c332541d71c1ba4b4a7f02c906 Mon Sep 17 00:00:00 2001 From: outfoxxed Date: Sat, 5 Jul 2025 02:28:07 -0700 Subject: [PATCH 2/2] add end_4 showcase --- public/assets/showcase/end4.mp4 | 3 +++ src/components/marquee/Marquee.astro | 14 +++++++++++--- 2 files changed, 14 insertions(+), 3 deletions(-) create mode 100644 public/assets/showcase/end4.mp4 diff --git a/public/assets/showcase/end4.mp4 b/public/assets/showcase/end4.mp4 new file mode 100644 index 0000000..8800239 --- /dev/null +++ b/public/assets/showcase/end4.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f304f6265be53ea8f35cddc95f9169fe2fafc52df20120228bc61ea3f8bbf0d +size 8571310 diff --git a/src/components/marquee/Marquee.astro b/src/components/marquee/Marquee.astro index 64f599a..50f14a0 100644 --- a/src/components/marquee/Marquee.astro +++ b/src/components/marquee/Marquee.astro @@ -6,6 +6,13 @@ const videos = [ author: 'soramane', source: "https://github.com/caelestia-dots/shell", path: "/assets/showcase/soramane.mp4", + installable: true, + }, + { + author: 'end_4', + source: "https://github.com/end-4/dots-hyprland", + path: "/assets/showcase/end4.mp4", + installable: true, }, { author: 'outfoxxed', @@ -37,7 +44,7 @@ const videos = [
- {videos.map(({ author, source, path }, index) =>
+ {videos.map(({ author, source, installable, path }, index) =>
)} @@ -61,7 +69,7 @@ const videos = [