Initial commit - Copied from SXMO

This commit is contained in:
Jonathan Hodgson 2021-02-23 22:12:48 +00:00
commit 9186be2ac2
4 changed files with 572 additions and 0 deletions

11
Makefile Normal file
View file

@ -0,0 +1,11 @@
PREFIX = /usr/local
.PHONY: install
screenlock: screenlock.c
gcc -o screenlock screenlock.c -lX11
install: screenlock
mkdir -p $(PREFIX)/bin
cp -f screenlock $(PREFIX)/bin/screenlock
chmod 755 $(PREFIX)/bin/screenlock