Compare commits
2 commits
3c27c1018c
...
ff316cdcd8
Author | SHA1 | Date | |
---|---|---|---|
ff316cdcd8 | |||
0da5fe781a |
3 changed files with 21 additions and 3 deletions
BIN
public/assets/showcase/end4.mp4
(Stored with Git LFS)
Normal file
BIN
public/assets/showcase/end4.mp4
(Stored with Git LFS)
Normal file
Binary file not shown.
|
@ -6,6 +6,13 @@ const videos = [
|
|||
author: '<a href="https://github.com/soramanew">soramane</a>',
|
||||
source: "https://github.com/caelestia-dots/shell",
|
||||
path: "/assets/showcase/soramane.mp4",
|
||||
installable: true,
|
||||
},
|
||||
{
|
||||
author: '<a href="https://github.com/end-4">end_4</a>',
|
||||
source: "https://github.com/end-4/dots-hyprland",
|
||||
path: "/assets/showcase/end4.mp4",
|
||||
installable: true,
|
||||
},
|
||||
{
|
||||
author: '<a href="https://outfoxxed.me">outfoxxed</a>',
|
||||
|
@ -37,7 +44,7 @@ const videos = [
|
|||
</div>
|
||||
</div>
|
||||
<div id="marquee-content" class="marquee-content" data-scroll="0" data-media-index="0">
|
||||
{videos.map(({ author, source, path }, index) => <div class="marquee-item">
|
||||
{videos.map(({ author, source, installable, path }, index) => <div class="marquee-item">
|
||||
<div>
|
||||
<video
|
||||
data-media-index={index}
|
||||
|
@ -53,7 +60,8 @@ const videos = [
|
|||
</video>
|
||||
<p>
|
||||
Configuration by <Fragment set:html={author}/>
|
||||
{source && <>(<a href={source}>source code</a>)</>}
|
||||
{source && !installable && <>(<a href={source}>source code</a>)</>}
|
||||
{source && installable && <>(<a href={source}>install</a>)</>}
|
||||
</p>
|
||||
</div>
|
||||
</div>)}
|
||||
|
@ -61,7 +69,7 @@ const videos = [
|
|||
</div>
|
||||
|
||||
<script>
|
||||
const videoCount = 5; // last array index
|
||||
const videoCount = 6; // last array index
|
||||
const marquee = document.getElementById("marquee-content")!;
|
||||
marquee.style.setProperty("--scroll", "0")
|
||||
|
||||
|
|
|
@ -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:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue