NeverIdle icon indicating copy to clipboard operation
NeverIdle copied to clipboard

Here is docker file for anyone who dont want to deal with screens

Open sumersm7 opened this issue 1 year ago • 0 comments

FROM alpine:latest

Install dependencies

RUN apk update && apk add --no-cache wget

Download script

RUN wget https://github.com/layou233/NeverIdle/releases/download/0.1/NeverIdle-linux-arm64 -O /usr/local/bin/NeverIdle

Change file permission

RUN chmod 777 /usr/local/bin/NeverIdle

Run the script with default arguments

CMD ["/bin/sh", "-c", "/usr/local/bin/NeverIdle -c 2h -m 2 -n 4h"]

sumersm7 avatar Apr 15 '23 14:04 sumersm7