Guile-XOSD provides Guile bindings for 'libxosd' library: <https://github.com/alezost/guile-xosd>
The main change since v0.1 is: original procedures (with "xosd-" prefix) moved to (xosd bindings) module. Now (xosd) module contains more "Schemey" procedures (for example 'make-osd' with keyword arguments). All changes can be found in the NEWS file: <https://github.com/alezost/guile-xosd/tree/master/NEWS>. See README and info manual for examples of using Guile-XOSD. ———————————————————————————————————————————————————————————————— Git repo: git://github.com/alezost/guile-xosd.git The release tarball: https://github.com/alezost/guile-xosd/releases/download/v0.2/guile-xosd-0.2.tar.gz MD5: c05340d0c6f1716c33cd0e75993d4a55 guile-xosd-0.2.tar.gz SHA256: 5b522cb77ac7789a7713bafdeb029987f1a6ce87001b5b2ed58e31e6e7010bc8 guile-xosd-0.2.tar.gz ———————————————————————————————————————————————————————————————— Guile-XOSD can be installed with GNU Guix using the attached "guile-xosd.scm" file: guix package --install-from-file=guile-xosd.scm
(use-modules (guix packages) (guix download) (guix licenses) (guix build-system gnu) (gnu packages guile) (gnu packages pkg-config) (gnu packages xorg) (gnu packages xdisorg)) (package (name "guile-xosd") (version "0.2") (source (origin (method url-fetch) (uri (string-append "https://github.com/alezost/" name "/releases/download/v" version "/" name "-" version ".tar.gz")) (sha256 (base32 "1j0b07kycccfslp5n6q0hz7adwc7k41fpzds2dvrly67gavjqljv")))) (build-system gnu-build-system) (native-inputs `(("pkg-config" ,pkg-config))) (inputs `(("guile" ,guile-2.0) ("libx11" ,libx11) ("libxext" ,libxext) ("libxinerama" ,libxinerama) ("xosd" ,xosd))) (home-page "https://github.com/alezost/guile-xosd") (synopsis "XOSD bindings for Guile") (description "Guile-XOSD provides Guile bindings for @code{libxosd}, the \"X On Screen Display\" library.") (license gpl3+))