Simple and flexbile QtQuick based desktop shell toolkit.
Go to file
outfoxxed d8fa9e7bb3
service/mpris: add properties for common track metadata
This was done to work around bad player implementations sending weird
metadata, such as removing the art url halfway through a song.
2024-06-21 19:03:40 -07:00
src service/mpris: add properties for common track metadata 2024-06-21 19:03:40 -07:00
.clang-format feat(wayland): custom layershell implementation 2024-02-24 02:06:40 -08:00
.clang-tidy service/pam: move pam execution to subprocess to allow killing it 2024-06-18 03:29:25 -07:00
.editorconfig feat: begin work on docs, also minor refactoring 2024-02-12 16:00:42 -08:00
.gitignore misc: remove the docs and examples submodules 2024-06-02 15:23:19 -07:00
BUILD.md docs: document PAM feature in build instructions 2024-06-18 15:25:10 -07:00
CMakeLists.txt service/greetd: add greetd service 2024-06-20 15:39:49 -07:00
CONTRIBUTING.md docs: add commit style instructions 2024-06-03 00:38:22 -07:00
Justfile build: improve parallelism by removing core dependency on modules 2024-03-12 00:04:20 -07:00
LICENSE misc: add LGPL license 2024-03-04 06:10:03 -08:00
LICENSE-GPL misc: add LGPL license 2024-03-04 06:10:03 -08:00
README.md docs: mention Fedora COPR package 2024-06-18 17:57:20 -07:00
default.nix service/pam: add pam service 2024-06-17 18:32:13 -07:00
flake.lock build: nix packaging 2024-03-04 05:13:58 -08:00
flake.nix all: remove NVIDIA workarounds 2024-06-02 15:36:33 -07:00
shell.nix build: greatly speed up build times using pch 2024-03-11 18:18:55 -07:00

README.md

quickshell

Simple and flexbile QtQuick based desktop shell toolkit.

Hosted on: outfoxxed's gitea, github

Documentation available at quickshell.outfoxxed.me or can be built from the quickshell-docs repo.

Some fully working examples can be found in the quickshell-examples repo.

Installation

Nix

This repo has a nix flake you can use to install the package directly:

{
  inputs = {
    nixpkgs.url = "nixpkgs/nixos-unstable";

    quickshell = {
      url = "git+https://git.outfoxxed.me/outfoxxed/quickshell";
      inputs.nixpkgs.follows = "nixpkgs";
    };
  };
}

Quickshell's binary is available at quickshell.packages.<system>.default to be added to lists such as environment.systemPackages or home.packages.

The package contains several features detailed in BUILD.md which can be enabled or disabled with overrides:

quickshell.packages.<system>.default.override {
  withJemalloc = true;
  withQtSvg = true;
  withWayland = true;
  withX11 = true;
  withPipewire = true;
  withPam = true;
  withHyprland = true;
}

Note: by default this package is built with clang as it is significantly faster.

Arch (AUR)

Quickshell has a third party AUR package available under the same name. It is not managed by us and should be looked over before use.

Fedora (COPR)

Quickshell has a third party Fedora COPR package available under the same name. It is not managed by us and should be looked over before use.

Anything else

See BUILD.md for instructions on building and packaging quickshell.

Contributing / Development

See CONTRIBUTING.md for details.

License

Licensed under the GNU LGPL 3.
Unless you explicitly state otherwise, any contribution submitted for inclusion shall be licensed as above, without any additional terms or conditions.