From bea92a5da420b392a6103d35aeb03a7a8392e42d Mon Sep 17 00:00:00 2001 From: Ruakij Date: Sun, 31 Jul 2022 12:50:57 +0200 Subject: [PATCH 1/3] Add event-file --- ksmserver.notifyrc | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 ksmserver.notifyrc diff --git a/ksmserver.notifyrc b/ksmserver.notifyrc new file mode 100644 index 0000000..a44caa8 --- /dev/null +++ b/ksmserver.notifyrc @@ -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= From 273b0260142c021f1c4635544adfc07b4bc8b331 Mon Sep 17 00:00:00 2001 From: Ruakij Date: Sun, 31 Jul 2022 12:51:14 +0200 Subject: [PATCH 2/3] Create Makefile for install&remove --- Makefile | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..fddffba --- /dev/null +++ b/Makefile @@ -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! From 5d50c6a747b2867059ce563934e6145202179510 Mon Sep 17 00:00:00 2001 From: Ruakij Date: Sun, 31 Jul 2022 12:51:31 +0200 Subject: [PATCH 3/3] Update install/remove instructions --- README.md | 33 +++++++++++++++++++++++++++++++-- 1 file changed, 31 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 5a0e1e0..63c1034 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,9 @@ Table of contents - [1. The Problem](#1-the-problem) - [2. The Fix](#2-the-fix) -- [3. How to install](#3-how-to-install) +- [3. How to install/remove](#3-how-to-installremove) + - [3.1. Automatically](#31-automatically) + - [3.2. Manually](#32-manually)
@@ -40,7 +42,31 @@ After a successful unlock, the value from the config is reapplied.
-# 3. How to install +# 3. How to install/remove + +## 3.1. Automatically + +### 3.1.1. Install + +Run the Makefile with `install`. + +```sh +make install +``` + +### 3.1.2. Remove + +Run the Makefile with `remove`. + +```sh +make remove +``` + +
+ +## 3.2. Manually + +### 3.2.1. Install Place the file `event_screensaver` to a bin-location, for a local user this is typically `~/.local/bin/` and make it executeable. @@ -51,3 +77,6 @@ Example: Screen locked Run Command: ~/.local/bin/event_screenSaver locked ``` + +Or update/create the config-file directly under `~/.config/ksmserver.notifyrc` similary to the file found in this repository. +Then restart or reload KWin.