mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-11 21:59:08 -05:00
gnu: Add wob.
* gnu/packages/xdisorg.scm (wob): New variable.
This commit is contained in:
parent
cf95ef7f44
commit
7f891056d4
1 changed files with 26 additions and 0 deletions
|
@ -941,6 +941,32 @@ (define-public xosd
|
|||
transparent text on your screen.")
|
||||
(license license:gpl2+)))
|
||||
|
||||
(define-public wob
|
||||
(package
|
||||
(name "wob")
|
||||
(version "0.11")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "https://github.com/francma/wob/releases/download/"
|
||||
version "/wob-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32 "1vgngcg8wxn6zfg34czn9w55ia0zmhlgnpzf0gh31dc72li9353k"))))
|
||||
(build-system meson-build-system)
|
||||
(native-inputs
|
||||
`(("pkg-config" ,pkg-config)
|
||||
("scdoc" ,scdoc)))
|
||||
(inputs
|
||||
`(("libseccomp" ,libseccomp)
|
||||
("wayland" ,wayland)
|
||||
("wayland-protocols" ,wayland-protocols)))
|
||||
(home-page "https://github.com/francma/wob")
|
||||
(synopsis "Lightweight overlay bar for Wayland")
|
||||
(description
|
||||
"Wob, or Wayland Overlay Bar, is a lightweight overlay volume,
|
||||
backlight, progress, or anything bar for Wayland.")
|
||||
(license license:isc)))
|
||||
|
||||
(define-public xbindkeys
|
||||
(package
|
||||
(name "xbindkeys")
|
||||
|
|
Loading…
Reference in a new issue