add tagged release info
This commit is contained in:
parent
9a810cf864
commit
a39c847084
4 changed files with 30 additions and 11 deletions
|
@ -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.<system>.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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -7,6 +7,9 @@ import FeatureList from "@src/components/featurelist/FeatureList.astro";
|
|||
const title = "Quickshell";
|
||||
---
|
||||
<BaseLayout title={title} description="A fully user customizable desktop shell" image="/quickshell.png">
|
||||
<a class="main-page-banner" href="https://outfoxxed.me/blog/quickshell-0-1">
|
||||
Quickshell 0.1.0 has been released! | 2025-06-12
|
||||
</a>
|
||||
<div class="main-page_hero" data-pagefind-ignore>
|
||||
<h1 class="gradient-text">Quickshell</h1>
|
||||
<section class="main-page_hero-text">
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue