From cb079d999dcceef6ca6be852a35c2d5f23d03a9d Mon Sep 17 00:00:00 2001 From: outfoxxed Date: Sun, 23 Nov 2025 13:11:34 -0800 Subject: [PATCH 1/4] remove the banner again --- src/pages/index.astro | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pages/index.astro b/src/pages/index.astro index c835832..58ed23c 100644 --- a/src/pages/index.astro +++ b/src/pages/index.astro @@ -9,9 +9,9 @@ const defaultVersion = (await getVersionsData()).default; const title = "Quickshell"; --- - +
Quickshell From 840a402cb8f5eb59506b6b9be26779a2942a737b Mon Sep 17 00:00:00 2001 From: outfoxxed Date: Mon, 15 Dec 2025 03:34:10 -0800 Subject: [PATCH 2/4] fix import in v0.2 again --- src/guide/v0_2_0/qml-language.md | 1 - 1 file changed, 1 deletion(-) diff --git a/src/guide/v0_2_0/qml-language.md b/src/guide/v0_2_0/qml-language.md index 8c8a249..f1948d2 100644 --- a/src/guide/v0_2_0/qml-language.md +++ b/src/guide/v0_2_0/qml-language.md @@ -2,7 +2,6 @@ title: "QML Language" index: 10 --- -import Collapsible from "@components/Collapsible.astro"; Quickshell is configured using the Qt Modeling Language, or QML. This page explains what you need to know about QML to start using Quickshell. From 712643922dbf0599d455640ee47a3497831a4a0f Mon Sep 17 00:00:00 2001 From: outfoxxed Date: Fri, 9 Jan 2026 02:19:52 -0800 Subject: [PATCH 3/4] mention upstream arch+fedora pkgs and 3rdparty opensuse/debian --- src/guide/v0_2_0/install-setup.md | 43 ++++++++++++++++++++++++++----- 1 file changed, 36 insertions(+), 7 deletions(-) diff --git a/src/guide/v0_2_0/install-setup.md b/src/guide/v0_2_0/install-setup.md index 4da3e78..c3d2c35 100644 --- a/src/guide/v0_2_0/install-setup.md +++ b/src/guide/v0_2_0/install-setup.md @@ -18,7 +18,7 @@ Note that you may want to install some additional packages (names vary by distro - `qt5compat`: extra visual effects, notably gaussian blur. @@QtQuick.Effects.MultiEffect is usually preferable ### Nix -Release versions of Quickshell are available from Nixpkgs under the `quickshell` package. +Release versions of Quickshell are available from Nixpkgs as `quickshell`. The Quickshell repo also has an embedded flake which can be used from either mirror: - `git+https://git.outfoxxed.me/outfoxxed/quickshell` @@ -51,9 +51,14 @@ When using the flake, additional QML packages can be added to Quickshell's envir `.withModules [ ]`. ### Arch -Quickshell is available from the aur under: -- the [quickshell](https://aur.archlinux.org/packages/quickshell) package for the latest release -- the [quickshell-git](https://aur.archlinux.org/packages/quickshell-git) package that tracks the master branch +Release versions of Quickshell are available in the Archlinux package repository as `quickshell`. + +```sh +pacman -S quickshell +``` + +Unreleased changes on the master branch are available from the [quickshell-git](https://aur.archlinux.org/packages/quickshell-git) +AUR package. > [!WARNING] > When using an AUR package, Quickshell may break whenever Qt is updated. @@ -63,14 +68,13 @@ Quickshell is available from the aur under: 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 the [errornointernet/quickshell] COPR, as either: +Quickshell is available in Fedora Rawhide as [`quickshell`](https://packages.fedoraproject.org/pkgs/quickshell/quickshell/), +or from the [errornointernet/quickshell] COPR, as either: - `quickshell` that tracks the latest release - `quickshell-git` that tracks the master branch @@ -85,6 +89,31 @@ sudo dnf install quickshell sudo dnf install quickshell-git ``` +### OpenSUSE / Debian +Quickshell is packaged on the Open Build Service in the [`home:AvengeMedia:danklinux`] repository and is available as +- `quickshell` for the latest release - [Install Instructions](https://software.opensuse.org//download.html?project=home%3AAvengeMedia%3Adanklinux&package=quickshell) +- `quickshell-git` for the master branch - [Install Instructions](https://software.opensuse.org//download.html?project=home%3AAvengeMedia%3Adanklinux&package=quickshell-git) + +[`home:AvengeMedia:danklinux`]: https://build.opensuse.org/project/show/home:AvengeMedia:danklinux + +### Ubuntu +Quickshell is packaged in the [`avengemedia/danklinux`] PPA, which provides +- `quickshell` which tracks the latest release +- `quickshell-git` which tracks the master branch + +To install: +```sh +# Add DankLinux PPA +sudo add-apt-repository ppa:avengemedia/danklinux +sudo apt update + +sudo apt install quickshell +# OR +sudo apt install quickshell-git +``` + +[`avengemedia/danklinux`]: https://launchpad.net/~avengemedia/+archive/ubuntu/danklinux + ### Guix Release versions of Quickshell are available from the standard Guix repository as `quickshell` from the `(gnu packages wm)` module. From b2d43ad425f6a0b3076962e8caaa3084f6b4cee4 Mon Sep 17 00:00:00 2001 From: outfoxxed Date: Fri, 9 Jan 2026 03:14:54 -0800 Subject: [PATCH 4/4] fix copr install section --- src/guide/v0_2_0/install-setup.md | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/src/guide/v0_2_0/install-setup.md b/src/guide/v0_2_0/install-setup.md index c3d2c35..266a797 100644 --- a/src/guide/v0_2_0/install-setup.md +++ b/src/guide/v0_2_0/install-setup.md @@ -73,8 +73,15 @@ yay -S quickshell-git (or your AUR helper of choice) ### Fedora -Quickshell is available in Fedora Rawhide as [`quickshell`](https://packages.fedoraproject.org/pkgs/quickshell/quickshell/), -or from the [errornointernet/quickshell] COPR, as either: +Release versions of Quickshell are available in Fedora Rawhide as [`quickshell`](https://packages.fedoraproject.org/pkgs/quickshell/quickshell/), + +To install: +```sh +sudo dnf install quickshell +``` + +#### Fedora COPR +Release and development versions of Quickshell are available from the [errornointernet/quickshell] COPR, as either: - `quickshell` that tracks the latest release - `quickshell-git` that tracks the master branch