clipnotify

Notify on new X clipboard events
git clone https://git.sinitax.com/cdown/clipnotify
Log | Files | Refs | README | LICENSE | sfeed.txt

commit 55307a71cbc5d517ff311ea4adf1501717eb0fcf
parent 22f7cb09d0b99af0aae7109aaff73760ef2dd5e3
Author: bloodstalker <thabogre@gmail.com>
Date:   Fri, 25 Sep 2020 07:03:12 +0330

added an install, uninstall and clean command.

Diffstat:
MMakefile | 9+++++++++
1 file changed, 9 insertions(+), 0 deletions(-)

diff --git a/Makefile b/Makefile @@ -2,3 +2,12 @@ x11_bsd_flags = -I/usr/X11R6/include -L/usr/X11R6/lib all: ${CC} ${CFLAGS} ${LDFLAGS} clipnotify.c -o clipnotify $(x11_bsd_flags) -lX11 -lXfixes + +install: all + cp clipnotify /usr/local/bin + +uninstall: + rm /usr/local/bin/clipnotify + +clean: + rm -f *.o *~ clipnotify