diff --git a/src/guide/install-setup.mdx b/src/guide/install-setup.mdx index 430e490..ebbfb47 100644 --- a/src/guide/install-setup.mdx +++ b/src/guide/install-setup.mdx @@ -13,7 +13,8 @@ All packages currently track quickshell's master branch. This may change in the ### Nix The Quickshell repo has an embedded flake. You can use either `git+https://git.outfoxxed.me/outfoxxed/quickshell` -or `github:quickshell-mirror/quickshell`. +or `github:quickshell-mirror/quickshell`. Use `?ref=` to specify a tag +if you want a tagged release. ```nix { @@ -21,7 +22,8 @@ or `github:quickshell-mirror/quickshell`. nixpkgs.url = "nixpkgs/nixos-unstable"; quickshell = { - url = "git+https://git.outfoxxed.me/outfoxxed/quickshell"; + # remove ?ref=v0.1.0 to track the master branch + url = "git+https://git.outfoxxed.me/outfoxxed/quickshell?ref=v0.1.0"; # THIS IS IMPORTANT # Mismatched system dependencies will lead to crashes and other issues. @@ -35,11 +37,13 @@ The package is available as `quickshell.packages..default`, which you ca `environment.systemPackages` or `home.packages` if you use home-manager. ### Arch -Quickshell is available from the aur by [mcgoth] under -the [quickshell](https://aur.archlinux.org/packages/quickshell) package. +Quickshell is available from the aur under +the [quickshell](https://aur.archlinux.org/packages/quickshell) package for the latest release, +or the [quickshell-git](https://aur.archlinux.org/packages/quickshell-git) package +which tracks the master branch. > [!WARNING] -> When using the AUR package, quickshell may break any time Qt is updated. +> When using an AUR package, quickshell may break any time Qt is updated. > The AUR gives us no way to actually fix this, but Quickshell will attempt to > warn you if it detects a breakage when updating. If warned of a breakage, > please reinstall the package @@ -47,17 +51,25 @@ the [quickshell](https://aur.archlinux.org/packages/quickshell) package. Install using the command below: ```sh yay -S quickshell +# or +yay -S quickshell-git ``` (or your AUR helper of choice) ### Fedora -Quickshell is available from [errornointernet](https://github.com/errornointernet/)'s -Fedora COPR as [errornointernet/quickshell](https://copr.fedorainfracloud.org/coprs/errornointernet/quickshell). +Quickshell is available from the [errornointernet/quickshell] COPR, as either +`quickshell` which tracks the latest release or `quickshell-git` which tracks +the master branch. + +[errornointernet/quickshell]: https://copr.fedorainfracloud.org/coprs/errornointernet/quickshell Install using the command below: ```sh sudo dnf copr enable errornointernet/quickshell + sudo dnf install quickshell +# or +sudo dnf install quickshell-git ``` ### Guix diff --git a/src/pages/docs/about.mdx b/src/pages/docs/about.mdx index 6e3059d..8028843 100644 --- a/src/pages/docs/about.mdx +++ b/src/pages/docs/about.mdx @@ -22,8 +22,4 @@ Built-in integrations are currently provided for: - MPRIS compatible media players - StatusNotifierItem compatible system tray clients -Quickshell is actively developed and will still receive breaking changes. -A tagged release is planned soon, however there will be breakage before -that point. - See the [Usage Guide](/docs/guide) to learn how to set up and use Quickshell diff --git a/src/pages/index.astro b/src/pages/index.astro index e82f181..55c93b3 100644 --- a/src/pages/index.astro +++ b/src/pages/index.astro @@ -7,6 +7,9 @@ import FeatureList from "@src/components/featurelist/FeatureList.astro"; const title = "Quickshell"; --- + + Quickshell 0.1.0 has been released! | 2025-06-12 +

Quickshell

diff --git a/src/styles/main-page.css b/src/styles/main-page.css index 8e89a99..babccf8 100644 --- a/src/styles/main-page.css +++ b/src/styles/main-page.css @@ -1,3 +1,11 @@ +.main-page-banner { + width: 100%; + text-align: center; + background-color: hsl(var(--green) 48% 40%); + color: white; + padding: 0.5rem 0; +} + .main-page_hero { position: relative; display: flex;