From a79e6e209839024ae816eeb8c53d9ef88f6a11bf Mon Sep 17 00:00:00 2001 From: Cookiez Date: Wed, 27 Aug 2025 13:22:46 +0200 Subject: [PATCH] Moved KDE-Plasma theme related files to Plasma dir. --- {other => plasma}/konsave.sh | 4 ++-- {other => plasma}/theme-reminder.sh | 2 +- {other => plasma}/theme.knsv | Bin zsh.nix | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) rename {other => plasma}/konsave.sh (88%) rename {other => plasma}/theme-reminder.sh (81%) rename {other => plasma}/theme.knsv (100%) diff --git a/other/konsave.sh b/plasma/konsave.sh similarity index 88% rename from other/konsave.sh rename to plasma/konsave.sh index 8782a2d..c415c7d 100644 --- a/other/konsave.sh +++ b/plasma/konsave.sh @@ -1,8 +1,8 @@ source /etc/nixos/other/colors.sh FLAG_FILE="/home/cookiez/.flags/theme-flag" -/run/current-system/sw/bin/konsave -i /etc/nixos/other/theme.knsv -/run/current-system/sw/bin/konsave -i /etc/nixos/other/theme.knsv +/run/current-system/sw/bin/konsave -i /etc/nixos/plasma/theme.knsv +/run/current-system/sw/bin/konsave -i /etc/nixos/plasma/theme.knsv /run/current-system/sw/bin/konsave -a theme progress_bar() { diff --git a/other/theme-reminder.sh b/plasma/theme-reminder.sh similarity index 81% rename from other/theme-reminder.sh rename to plasma/theme-reminder.sh index 31c2646..3d61550 100644 --- a/other/theme-reminder.sh +++ b/plasma/theme-reminder.sh @@ -2,7 +2,7 @@ source /etc/nixos/other/colors.sh FLAG_FILE="/home/cookiez/.flags/theme-flag" if [ ! -f "$FLAG_FILE" ]; then - echo -e "${RED}Warning: Make sure to apply the custom system theme!${NOCOLOR} (source '/etc/nixos/other/konsave.sh')" + echo -e "${RED}Warning: Make sure to apply the custom system theme!${NOCOLOR} (source '/etc/nixos/plasma/konsave.sh')" fi #else # echo "Flag file exists - Theme should be applied already!" diff --git a/other/theme.knsv b/plasma/theme.knsv similarity index 100% rename from other/theme.knsv rename to plasma/theme.knsv diff --git a/zsh.nix b/zsh.nix index 430f964..ea23fb9 100644 --- a/zsh.nix +++ b/zsh.nix @@ -9,7 +9,7 @@ shellInit = '' source /etc/nixos/other/aliases - source /etc/nixos/other/theme-reminder.sh + source /etc/nixos/plasma/theme-reminder.sh '';