guix_mirror_bot pushed a commit to branch master
in repository guix.

commit 57b78bcaefa51e6cd7eb7dd1ed1be23ab302c06c
Author: John Kehayias <[email protected]>
AuthorDate: Tue Jan 6 21:29:27 2026 -0500

    gnu: Add polycat.
    
    * gnu/packages/wm.scm (polycat): New variable.
    
    Change-Id: I4f612f5ed81b0ccd367c0285947fcf97f9898541
---
 gnu/packages/wm.scm | 29 ++++++++++++++++++++++++++++-
 1 file changed, 28 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/wm.scm b/gnu/packages/wm.scm
index eb6b5a7ced..f8a1a6b585 100644
--- a/gnu/packages/wm.scm
+++ b/gnu/packages/wm.scm
@@ -50,7 +50,7 @@
 ;;; Copyright © 2021, 2022 Petr Hodina <[email protected]>
 ;;; Copyright © 2021, 2023 jgart <[email protected]>
 ;;; Copyright © 2021 Disseminate Dissent <[email protected]>
-;;; Copyright © 2022, 2025 John Kehayias <[email protected]>
+;;; Copyright © 2022, 2025, 2026 John Kehayias <[email protected]>
 ;;; Copyright © 2022 Gabriel Wicki <[email protected]>
 ;;; Copyright © 2022 Jai Vetrivelan <[email protected]>
 ;;; Copyright © 2022 Daniel Meißner <[email protected]>
@@ -2356,6 +2356,33 @@ customizable status bars for their desktop environment.  
It has built-in
 functionality to display information about the most commonly used services.")
     (license license:expat)))
 
+(define-public polycat
+  (package
+    (name "polycat")
+    (version "2.0.0")
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                     (url "https://github.com/2IMT/polycat";)
+                     (commit (string-append "v" version))))
+              (file-name (git-file-name name version))
+              (sha256
+               (base32
+                "1174i0z979j67zcpm0hp1zc1jhk17sx92zp1px5zfywr37mg3462"))))
+    (build-system gnu-build-system)
+    (arguments
+     (list #:tests? #f                  ; no tests
+           #:make-flags
+           #~(list (string-append "PREFIX=" #$output))
+           #:phases
+           #~(modify-phases %standard-phases
+               (delete 'configure))))
+    (home-page "https://github.com/2IMT/polycat";)
+    (synopsis "CPU usage module for menubars")
+    (description "Polycat is a menubar (polybar or waybar) module displaying
+a running cat (runcat) for CPU usage.")
+    (license license:expat)))
+
 (define-public wlclock
   (package
     (name "wlclock")

Reply via email to