From fe62bf4d9928d7536e312f0e66bd11347889f273 Mon Sep 17 00:00:00 2001 From: transcaffeine Date: Sun, 7 Sep 2025 14:07:10 +0200 Subject: [PATCH] feat(darkman): add light/dark mode scripts for KDE sessions --- local/share/dark-mode.d/kde.sh | 6 ++++++ local/share/light-mode.d/kde.sh | 6 ++++++ 2 files changed, 12 insertions(+) create mode 100755 local/share/dark-mode.d/kde.sh create mode 100755 local/share/light-mode.d/kde.sh diff --git a/local/share/dark-mode.d/kde.sh b/local/share/dark-mode.d/kde.sh new file mode 100755 index 0000000..9fbf6f6 --- /dev/null +++ b/local/share/dark-mode.d/kde.sh @@ -0,0 +1,6 @@ +#!/usr/bin/env bash +set -euo pipefail + +if command -v lookandfeeltool; then + lookandfeeltool -a org.kde.breezedark.desktop +fi diff --git a/local/share/light-mode.d/kde.sh b/local/share/light-mode.d/kde.sh new file mode 100755 index 0000000..8088d84 --- /dev/null +++ b/local/share/light-mode.d/kde.sh @@ -0,0 +1,6 @@ +#!/usr/bin/env bash +set -euo pipefail + +if command -v lookandfeeltool; then + lookandfeeltool -a org.kde.breeze.desktop +fi