From 9d9388be5eb92ffdb6af6727465451e13617b79e Mon Sep 17 00:00:00 2001 From: Michael G Date: Tue, 2 Feb 2021 10:30:42 +0100 Subject: [PATCH] Update installation instructions for Gentoo I removed the command to add the overlay, this is documented in the overlay repository. Also added instructions for OpenRC, which is more often used that SystemD with Gentoo. --- README.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 95f91a9..6be32c3 100644 --- a/README.md +++ b/README.md @@ -113,10 +113,13 @@ sudo ./throttled/install.sh ``` ### Gentoo -An overlay is [available](https://github.com/erpalma/throttled-overlay). +An overlay is [available](https://github.com/erpalma/throttled-overlay). Follow the instructions in the README to add it. ``` -layman -o https://github.com/erpalma/throttled-overlay/raw/master/repositories.xml -f -a throttled sudo emerge -av sys-power/throttled +# when using OpenRC: +rc-update add throttled default +/etc/init.d/throttled start +# when using SystemD: systemctl enable throttled.service systemctl start throttled.service ```