services: desktop: Deprecate the upower-service procedure.
This has now been replaced by the upower-service-type and <upower-configuration> record. * gnu/services/desktop.scm (upower-service): Deprecate this procedure.
This commit is contained in:
parent
8b9a7b26c2
commit
8d2c3c54ee
|
@ -51,6 +51,7 @@
|
|||
#:use-module (gnu packages libusb)
|
||||
#:use-module (gnu packages mate)
|
||||
#:use-module (gnu packages enlightenment)
|
||||
#:use-module (guix deprecation)
|
||||
#:use-module (guix records)
|
||||
#:use-module (guix packages)
|
||||
#:use-module (guix store)
|
||||
|
@ -293,18 +294,18 @@ used by GNOME.")
|
|||
upower-package)))
|
||||
(default-value (upower-configuration)))))
|
||||
|
||||
(define* (upower-service #:key (upower upower)
|
||||
(watts-up-pro? #f)
|
||||
(poll-batteries? #t)
|
||||
(ignore-lid? #f)
|
||||
(use-percentage-for-policy? #f)
|
||||
(percentage-low 10)
|
||||
(percentage-critical 3)
|
||||
(percentage-action 2)
|
||||
(time-low 1200)
|
||||
(time-critical 300)
|
||||
(time-action 120)
|
||||
(critical-power-action 'hybrid-sleep))
|
||||
(define-deprecated (upower-service #:key (upower upower)
|
||||
(watts-up-pro? #f)
|
||||
(poll-batteries? #t)
|
||||
(ignore-lid? #f)
|
||||
(use-percentage-for-policy? #f)
|
||||
(percentage-low 10)
|
||||
(percentage-critical 3)
|
||||
(percentage-action 2)
|
||||
(time-low 1200)
|
||||
(time-critical 300)
|
||||
(time-action 120)
|
||||
(critical-power-action 'hybrid-sleep))
|
||||
"Return a service that runs @uref{http://upower.freedesktop.org/,
|
||||
@command{upowerd}}, a system-wide monitor for power consumption and battery
|
||||
levels, with the given configuration settings. It implements the
|
||||
|
|
Loading…
Reference in New Issue