Simple and flexbile QtQuick based desktop shell toolkit.
Go to file
outfoxxed a35d3f9584
global: add Quickshell.processId and rename Process.pid
2024-03-08 23:25:54 -08:00
docs@70989dc619 docs: mention quickshell-examples in README 2024-03-08 05:11:14 -08:00
examples@9c83cc248c cli: add manifest and environment variables for config path 2024-03-08 18:08:47 -08:00
src global: add Quickshell.processId and rename Process.pid 2024-03-08 23:25:54 -08:00
.clang-format feat(wayland): custom layershell implementation 2024-02-24 02:06:40 -08:00
.clang-tidy feat: completely redesign hot reloader 2024-02-16 17:09:50 -08:00
.editorconfig feat: begin work on docs, also minor refactoring 2024-02-12 16:00:42 -08:00
.gitignore docs: add build instructions to README 2024-03-07 06:19:09 -08:00
.gitmodules docs: mention quickshell-examples in README 2024-03-08 05:11:14 -08:00
CMakeLists.txt build: add git revision to version 2024-03-08 23:08:50 -08:00
Justfile docs: add build instructions to README 2024-03-07 06:19:09 -08: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 quickshell-examples in README 2024-03-08 05:11:14 -08:00
default.nix build: add git revision to version 2024-03-08 23:08:50 -08:00
flake.lock build: nix packaging 2024-03-04 05:13:58 -08:00
flake.nix build: nix packaging 2024-03-04 05:13:58 -08:00
package.nix build: nix packaging 2024-03-04 05:13:58 -08:00
shell.nix build: nix packaging 2024-03-04 05:13:58 -08:00

README.md

quickshell

Simple and flexbile QtQuick based desktop shell toolkit.

Hosts: outfoxxed's gitea, github

Documentation can be built from the quickshell-docs repo, though is currently pretty lacking.

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

Both the documentation and examples are included as submodules with revisions that work with the current version of quickshell.

You can clone everything with

$ git clone --recursive https://git.outfoxxed.me/outfoxxed/quickshell.git

Or clone missing submodules later with

$ git submodule update --init --recursive

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.

Manual

If not using nix, you'll have to build from source.

Dependencies

To build quickshell at all, you will need the following packages (names may vary by distro)

  • just
  • cmake
  • pkg-config
  • ninja
  • Qt6 [ QtBase, QtDeclarative ]

To build with wayland support you will additionally need:

  • wayland
  • wayland-scanner (may be part of wayland on some distros)
  • wayland-protocols
  • Qt6 [ QtWayland ]

Building

To make a release build of quickshell run:

$ just release

If you have all the dependencies installed and they are in expected locations this will build correctly.

To install to /usr/local/bin run as root (usually sudo) in the same folder:

$ just install

Building (Nix)

You can build directly using the provided nix flake or nix package.

nix build
nix build -f package.nix # calls default.nix with a basic callPackage expression

Development

For nix there is a devshell available from shell.nix and as a devShell output from the flake.

The Justfile contains various useful aliases:

  • just configure [<debug|release> [extra cmake args]]
  • just build (runs configure for debug mode)
  • just run [args]
  • just clean
  • just test [args] (configure with -DBUILD_TESTING=ON first)
  • just fmt
  • just lint

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.