diff options
| author | Andrew Wong <wongandj@runbox.com> | 2025-11-08 15:03:06 -0500 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2026-02-26 12:01:31 +0000 |
| commit | 3fa6987d05eb8d208f89a1a2c425864ba65badd0 (patch) | |
| tree | cc0ab64fd51c377887fa819337ab61a698352df5 /gnu/packages | |
| parent | 138d1411bf00a6c138515affd025f9c1b9705c97 (diff) | |
gnu: Add lavalauncher.
* gnu/packages/wm.scm (lavalauncher): New variable.
Merges: https://codeberg.org/guix/guix/pulls/4137
Change-Id: I49f0ccf8e5886e8d502b3bc3ad09130bb3f45171
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu/packages')
| -rw-r--r-- | gnu/packages/wm.scm | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/gnu/packages/wm.scm b/gnu/packages/wm.scm index b40ff63aeb2..36742192663 100644 --- a/gnu/packages/wm.scm +++ b/gnu/packages/wm.scm @@ -916,6 +916,37 @@ the i3 window manager through its i3bar component, as an alternative to i3status.") (license license:gpl3+))) +(define-public lavalauncher + (package + (name "lavalauncher") + (version "2.1.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://git.sr.ht/~leon_plickat/lavalauncher") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1hqlylvdmgivvxvsvxr3rx5mwl0p0hypdaqbfi16r6rxmdky31l6")))) + (build-system meson-build-system) + (native-inputs + (list pkg-config + scdoc)) + (inputs + (list cairo + librsvg + libxkbcommon + wayland + wayland-protocols)) + (home-page "https://sr.ht/~leon_plickat/lavalauncher/") + (synopsis "Dock-like launcher panel for Wayland desktops") + (description + "LavaLauncher is a simple launcher panel that displays a dynamically +sized bar with user-defined buttons activating shell commands. Features +include multiple bars and touch screen compatibility.") + (license license:gpl3+))) + (define-public obconf (package (name "obconf") |
