dusk theme changing

This commit is contained in:
2023-09-17 19:02:30 +02:00
parent 4e54d5f372
commit 3406fa27d9
12 changed files with 1292 additions and 4 deletions

20
dusk/.dusk/Makefile Normal file
View File

@@ -0,0 +1,20 @@
##
# Light- and dark mode switcher
#
# @file
# @version 0.1
all: dusk
dusk:
gcc -I /usr/include -L /usr/lib -O -Wall `pkg-config --cflags --libs libsystemd libcjson` dusk.c -o dusk
install: all
mkdir -p ${DESTDIR}${PREFIX}/bin
cp -f dusk ${DESTDIR}${PREFIX}/bin
uninstall:
rm -f ${DESTDIR}${PREFIX}/bin/dusk
clean:
rm dusk