Desktop shell for wayland compositors built with Quickshell & GO, optimized for niri, hyprland, sway, MangoWC, labwc, and MiracleWM. https://danklinux.com
  • QML 58.6%
  • Go 33.1%
  • JavaScript 4.4%
  • Shell 1.3%
  • Python 1%
  • Other 1.6%
Find a file
2026-09-23 18:13:37 -04:00
.agents Squashed commit of the following: 2026-09-17 16:51:27 -04:00
.github ci: fix review job 2026-09-22 14:52:16 -04:00
assets Squashed commit of the following: 2026-09-17 16:51:27 -04:00
core screenshot: configure surfaces before requesting screen captures 2026-09-23 11:00:27 -04:00
dank-qml-common@640b739e31 launcher: design adjustments 2026-09-23 16:35:18 -04:00
distro fix(debian): obs preinstall & ID checks for debian testing builds 2026-09-22 23:29:34 -04:00
quickshell launcher: even out spacing 2026-09-23 18:13:37 -04:00
scripts media: change player style 2026-09-22 09:00:34 -04:00
.editorconfig Refactor pre-commit hooks to use prek (#976) 2025-12-11 09:11:12 -05:00
.gitignore plugins/i18n: create mechanism for plugins to define their own 2026-08-19 11:52:32 -04:00
.gitmodules gitmodules: set branch=master in .gitmodules 2026-07-19 16:48:44 -04:00
.pre-commit-config.yaml pre-commit: add nix-vendor-hash pre-commit hook (#3521) 2026-09-20 17:27:45 -04:00
AGENTS.md Squashed commit of the following: 2026-09-17 16:51:27 -04:00
CHANGELOG.MD core: migrate to dankgo shared go modules, embed quickshell in DMS 2026-07-18 14:51:52 -04:00
CONTRIBUTING.md CONTRIBUTING: add generative AI policy 2026-09-11 10:48:13 -04:00
flake.lock launcher: design adjustments 2026-09-23 16:35:18 -04:00
flake.nix media: change player style 2026-09-22 09:00:34 -04:00
LICENSE meta: monorepo updates 2025-11-12 20:34:58 -05:00
Makefile Squashed commit of the following: 2026-09-17 16:51:27 -04:00
README.md docs: credit Reverier-Xu/Ori-fcitx5 for fcitx5 theme inspiration (#3510) 2026-09-20 11:48:00 -04:00

DankMaterialShell

DankMaterialShell

A modern desktop shell for Wayland

Built with Quickshell and Go

Documentation GitHub stars GitHub License GitHub release Arch version AUR version (git) Ko-Fi donate

DankMaterialShell is a complete desktop shell for niri, Hyprland, MangoWC, Sway, labwc, Scroll, Miracle WM, and other Wayland compositors. It replaces waybar, swaylock, swayidle, mako, fuzzel, polkit, and everything else you'd normally stitch together to make a desktop.

Repository Structure

This is a monorepo containing both the shell interface and the core backend services:

DankMaterialShell/
├── quickshell/         # QML-based shell interface
│   ├── Modules/        # UI components (panels, widgets, overlays)
│   ├── Services/       # System integration (audio, network, bluetooth)
│   ├── Widgets/        # Reusable UI controls
│   └── Common/         # Shared resources and themes
├── core/               # Go backend and CLI
│   ├── cmd/            # dms CLI and dankinstall binaries
│   ├── internal/       # System integration, IPC, distro support
│   └── pkg/            # Shared packages
├── distro/             # Distribution packaging
│   ├── fedora/         # Fedora RPM specs
│   ├── debian/         # Debian packaging
│   └── nix/            # NixOS/home-manager modules
└── flake.nix           # Nix flake for declarative installation

See it in Action

More Screenshots
Desktop Dashboard Launcher Control Center

Installation

curl -fsSL https://install.danklinux.com | sh

One command installs DMS and all dependencies on Arch, Fedora, Debian, Ubuntu, openSUSE, or Gentoo.

Manual installation guide

Features

Dynamic Theming Wallpaper-based color schemes that automatically theme GTK, Qt, terminals, editors (vscode, vscodium), and more using matugen and dank16.

System Monitoring Real-time CPU, RAM, GPU metrics and temperatures built into the dms daemon (powered by dgop). Process list with search and management.

Powerful Launcher Spotlight-style search for applications, files (dsearch), emojis, running windows, calculator, and commands. Extensible with plugins.

Control Center Unified interface for network, Bluetooth, audio devices, display settings, and night mode.

Smart Notifications Notification center with grouping, rich text support, and keyboard navigation.

Media Integration MPRIS player controls, calendar sync, weather widgets, and clipboard history with image previews.

Session Management Lock screen, idle detection, auto-lock/suspend with separate AC/battery settings, and a settings front-end for dank-greeter.

Plugin System Extend functionality with the plugin registry. DMS keeps ~/.config/DankMaterialShell/plugins.lock.json synchronized with managed plugin installs and their exact Git commits, so the same plugins can be reproduced on another machine.

Supported Compositors

Works best with niri, Hyprland, Sway, MangoWC, labwc, Scroll, and Miracle WM with full workspace switching, overview integration, and monitor management. Other Wayland compositors work with reduced features.

Compositor configuration guide

Command Line Interface

Control the shell from the command line or keybinds:

dms run              # Start the shell
dms ipc call spotlight toggle
dms ipc call audio setvolume 50
dms ipc call wallpaper set /path/to/image.jpg
dms brightness list  # List available displays
dms plugins search   # Browse plugin registry
dms plugins lock     # Refresh the portable plugin lockfile
dms plugins restore ~/plugins.lock.json

Full CLI and IPC documentation

Documentation

Dank Projects

DMS is one piece of the suite. The rest lives in its own repos:

  • dank-greeter - greetd login screen with the Dank Material aesthetic. The Greeter tab in DMS settings is the front-end for it.
  • dankcalendar - Local, Google, Microsoft, and CalDAV calendars for the dank desktop.
  • dgop - System monitoring TUI and Go library; its library powers the process list and dashboard widgets inside the dms daemon.
  • dsearch - Fast file search that powers file results in the launcher.
  • dank-qml-common - Shared QML widgets and components used by DMS, dank-greeter, and dankcalendar.
  • dankgo - Common Go modules behind the single binary apps.

Development

See component-specific documentation:

  • quickshell/ - QML shell development, widgets, and modules
  • core/ - Go backend, CLI tools, and system integration
  • distro/ - Distribution packaging (Fedora, Debian, NixOS)

Building from Source

Core + Dankinstall:

cd core
make              # Build dms CLI
make dankinstall  # Build installer

Shell:

quickshell -p quickshell/

NixOS:

{
  inputs.dms.url = "github:AvengeMedia/DankMaterialShell";

  # Use in home-manager or NixOS configuration
  imports = [ inputs.dms.homeModules.dank-material-shell ];
}

Contributing

Contributions welcome. Bug fixes, widgets, features, documentation, and plugins all help.

  1. Fork the repository
  2. Make your changes
  3. Test thoroughly
  4. Open a pull request

For documentation contributions, see DankLinux-Docs.

Credits

Star History

Star History Chart

License

MIT License - See LICENSE for details.