Merge branch 'dev' into release-1.2
commit
c239556ad6
@ -0,0 +1,29 @@
|
|||||||
|
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 ${SCRIPT_PATH}
|
||||||
|
# Make executeable
|
||||||
|
chmod +x ${SCRIPT_PATH}
|
||||||
|
|
||||||
|
# Deploy notifyrc-file
|
||||||
|
cp ./ksmserver.notifyrc ${KSMSERVER_NOTIFY_CONFIG_PATH}
|
||||||
|
|
||||||
|
# Reload kwin..
|
||||||
|
qdbus org.kde.KWin /KWin reconfigure
|
||||||
|
|
||||||
|
# Installed!
|
||||||
|
|
||||||
|
|
||||||
|
remove:
|
||||||
|
# Remove files..
|
||||||
|
rm ${SCRIPT_PATH} ${KSMSERVER_NOTIFY_CONFIG_PATH}
|
||||||
|
|
||||||
|
# Reload kwin..
|
||||||
|
qdbus org.kde.KWin /KWin reconfigure
|
||||||
|
|
||||||
|
# Removed!
|
@ -0,0 +1,13 @@
|
|||||||
|
[Event/locked]
|
||||||
|
Action=Execute
|
||||||
|
Execute=~/.local/bin/event_screensaver locked
|
||||||
|
Logfile=
|
||||||
|
Sound=
|
||||||
|
TTS=
|
||||||
|
|
||||||
|
[Event/unlocked]
|
||||||
|
Action=Execute
|
||||||
|
Execute=~/.local/bin/event_screensaver unlocked
|
||||||
|
Logfile=
|
||||||
|
Sound=
|
||||||
|
TTS=
|
Loading…
Reference in New Issue