You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
kde_screensaver_suspendscreen/Makefile

31 lines
614 B
Makefile

DESTDIR=~/
KSMSERVER_NOTIFY_CONFIG_PATH=.config/ksmserver.notifyrc
SCRIPT_PATH=.local/bin/event_screensaver
.PHONY: install remove
default: install
install:
# Deploy script
cp -f ./event_screensaver ${DESTDIR}${SCRIPT_PATH}
# Make executeable
chmod +x ${DESTDIR}${SCRIPT_PATH}
# Deploy notifyrc-file
cp ./ksmserver.notifyrc ${DESTDIR}${KSMSERVER_NOTIFY_CONFIG_PATH}
# Reload kwin..
qdbus org.kde.KWin /KWin reconfigure
# Installed!
remove:
# Remove files..
rm ${DESTDIR}${SCRIPT_PATH} ${DESTDIR}${KSMSERVER_NOTIFY_CONFIG_PATH}
# Reload kwin..
qdbus org.kde.KWin /KWin reconfigure
# Removed!