[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
06/08: gnu: Add swaynotificationcenter
From: |
guix-commits |
Subject: |
06/08: gnu: Add swaynotificationcenter |
Date: |
Tue, 17 Jan 2023 10:11:48 -0500 (EST) |
civodul pushed a commit to branch master
in repository guix.
commit f2deb6c18a023caa4b023627a156e331003d416f
Author: florhizome <florhizome@posteo.net>
AuthorDate: Mon Dec 12 12:56:43 2022 +0000
gnu: Add swaynotificationcenter
* gnu/packages/wm.scm (swaynotificationcenter): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
---
gnu/packages/wm.scm | 51 +++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 51 insertions(+)
diff --git a/gnu/packages/wm.scm b/gnu/packages/wm.scm
index a13467663e..9a18580753 100644
--- a/gnu/packages/wm.scm
+++ b/gnu/packages/wm.scm
@@ -1722,6 +1722,57 @@ display a clock or apply image manipulation techniques
to the background image."
(description "Swaybg is a wallpaper utility for Wayland compositors.")
(license license:expat))) ; MIT license
+
+(define-public swaynotificationcenter
+ (package
+ (name "swaynotificationcenter")
+ (version "0.7.3")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url
"https://github.com/ErikReider/SwayNotificationCenter")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
"1xvr5m5sqznr3dd512i5pk0d56v7n0ywdcy6rnz85vbf2k7b6kj5"))))
+ (build-system meson-build-system)
+ (arguments (list #:configure-flags #~(list "-Dsystemd-service=false")))
+ (native-inputs
+ (list `(,glib "bin")
+ gobject-introspection
+ pkg-config
+ python-minimal
+ scdoc
+ vala-next))
+ (inputs
+ (list json-glib
+ glib
+ gtk+
+ gtk-layer-shell
+ libhandy
+ wayland-protocols))
+ (synopsis "Notification daemon with a graphical interface")
+ (description
+ "This package provides a notification daemon for the Sway Wayland
+compository, supporting the following featuers:
+
+@itemize
+@item Keyboard shortcuts
+@item Notification body markup with image support
+@item A panel to view previous notifications
+@item Show album art for notifications like Spotify
+@item Do not disturb
+@item Click notification to execute default action
+@item Show alternative notification actions
+@item Customization through a CSS file
+@item Trackpad/mouse gesture to close notification
+@item The same features as any other basic notification daemon
+@item Basic configuration through a JSON config file
+@item Hot-reload config through swaync-client
+@end itemize")
+ (home-page "https://github.com/ErikReider/SwayNotificationCenter")
+ (license license:expat)))
+
(define-public waybar
(package
(name "waybar")
- branch master updated (306737c679 -> ecda67a577), guix-commits, 2023/01/17
- 01/08: doc: Use the right cross-reference command., guix-commits, 2023/01/17
- 03/08: gnu: gdcm: Update to 3.0.20., guix-commits, 2023/01/17
- 04/08: gnu: cifs-utils: Update to 7.0 [fixes CVE-2022-27239]., guix-commits, 2023/01/17
- 06/08: gnu: Add swaynotificationcenter,
guix-commits <=
- 08/08: gnu: openmw: Use ffmpeg-4., guix-commits, 2023/01/17
- 05/08: gnu: Add raylib., guix-commits, 2023/01/17
- 02/08: debug-link: Protect against dangling symlinks., guix-commits, 2023/01/17
- 07/08: gnu: Add bees., guix-commits, 2023/01/17