Skip to content

Instantly share code, notes, and snippets.

@nicr9
Created February 16, 2016 09:26
Show Gist options
  • Save nicr9/55a6f2ac73cdf3bf33f9 to your computer and use it in GitHub Desktop.
Save nicr9/55a6f2ac73cdf3bf33f9 to your computer and use it in GitHub Desktop.
FROM ubuntu:15.10
MAINTAINER Nic Roland "nicroland9@gmail.com"
RUN apt-get update && \
apt-get install -y xdotool cron && \
apt-get clean
RUN echo "20 * * * * xdotool key Caps_Lock" > capslock.cron
RUN crontab capslock.cron
ENTRYPOINT cron -f
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment