NeverIdle
NeverIdle copied to clipboard
Here is docker file for anyone who dont want to deal with screens
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"]