From b7a091cf7fe130b267e65fbc9101972f0291b431 Mon Sep 17 00:00:00 2001 From: Sughosha Date: Wed, 22 Jun 2022 08:09:28 +0200 Subject: gnu: Add gnome-shell-extension-transparent-window. * gnu/packages/gnome-xyz.scm (gnome-shell-extension-transparent-window): New variable. Signed-off-by: Liliana Marie Prikler --- gnu/packages/gnome-xyz.scm | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) (limited to 'gnu/packages') diff --git a/gnu/packages/gnome-xyz.scm b/gnu/packages/gnome-xyz.scm index 35e5969775..da316186d5 100644 --- a/gnu/packages/gnome-xyz.scm +++ b/gnu/packages/gnome-xyz.scm @@ -1051,6 +1051,37 @@ in the status menu below the volume slider. Various active ports like HDMI, Speakers etc. of the same device are also displayed for selection.") (license license:gpl3+))) +(define-public gnome-shell-extension-transparent-window + (let ((commit "cc9bc70c192dd565fa6f1d1b28d9a20f99684f2a") + (revision "45")) + (package + (name "gnome-shell-extension-transparent-window") + (version (git-version "0" revision commit)) + (source + (origin + (method git-fetch) + (uri (git-reference + (url (string-append "https://github.com/pbxqdown/" + "gnome-shell-extension-transparent-window")) + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "1f9iqqjpmmylqz0ws8cy5rs475bwzi7jy44q9ip44ig2acz2wxzp")))) + (build-system copy-build-system) + (arguments + (list + #:install-plan + #~'(("." + #$(string-append "/share/gnome-shell/extensions" + "/transparent-window@pbxqdown.github.com"))))) + (home-page + "https://github.com/pbxqdown/gnome-shell-extension-transparent-window") + (synopsis "Change the opacity of windows in GNOME Shell") + (description "This extension adds keybindings to change the opacity +of windows.") + (license license:expat)))) + (define-public arc-theme (package (name "arc-theme") -- cgit v1.2.3 d6e7290d16b94ea05f567222ce2b5ef2593'>root/gnu/services/admin.scm
AgeCommit message (Expand)Author
2021-03-29services: rottlog: Add /var/log/mcron.log to '%default-rotations'....Fixes <https://bugs.gnu.org/47436>. Reported by Leo Famulari <leo@famulari.name>. * gnu/services/admin.scm (%rotated-files): Add "/var/log/mcron.log". Ludovic Courtès
2020-08-24services: unattended-upgrade: Log output of the 'guix' commands....Fixes <https://bugs.gnu.org/43011>. Reported by Jesse Gibbons <jgibbons2357@gmail.com>. Until now the stdout/stderr file descriptors were not redirected. * gnu/services/admin.scm (unattended-upgrade-mcron-jobs)[code]: Remove 'with-logging' and use 'redirect-port' instead. Ludovic Courtès
2020-08-24services: unattended-upgrade: Add 'operating-system-file' field....* gnu/services/admin.scm (<unattended-upgrade-configuration>)[operating-system-file]: New field. (unattended-upgrade-mcron-jobs): Honor it. * doc/guix.texi (Unattended Upgrades): Document it. Ludovic Courtès
2020-07-27services: Add 'unattended-upgrade-service-type'....* gnu/services/admin.scm (<unattended-upgrade-configuration>): New record type. (%unattended-upgrade-log-file): New variable. (unattended-upgrade-mcron-jobs, unattended-upgrade-log-rotations): New procedures. (unattended-upgrade-service-type): New variable. * doc/guix.texi (Service Reference): Add 'provenance-service-type' anchor. (Unattended Upgrades): New section. Ludovic Courtès
2020-05-06services: rottlog: Append '.gz' to rotated file....Fixes <https://issues.guix.info/issue/40945>. * gnu/services/admin.scm (%default-rotations): Add option 'storefile'. Brice Waegeneire