mirror of
https://github.com/flynx/thinkpad-keyboard-brightness.git
synced 2025-10-28 10:40:10 +00:00
17 lines
304 B
Makefile
17 lines
304 B
Makefile
|
|
SERVICE_DIR := /etc/systemd/system/
|
|
|
|
TIMER := thinkpad-keyboard-brightness.timer
|
|
UNIT := thinkpad-keyboard-brightness.service
|
|
|
|
|
|
|
|
.PHONY:install
|
|
install: $(TIMER) $(UNIT)
|
|
cp -f $? $(SERVICE_DIR)
|
|
systemctl daemon-reload
|
|
systemctl enamble ${UNIT}
|
|
systemctl enamble ${TIMER}
|
|
systemctl start ${TIMER}
|
|
|