From ec6bff26f91b30344fd66e7d7da7891fe4dd262f Mon Sep 17 00:00:00 2001 From: m Date: Thu, 16 Dec 2021 17:38:39 +0100 Subject: [PATCH] Added skeleton code for Konsole support --- apply-colors.sh | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/apply-colors.sh b/apply-colors.sh index b908d2e..90960e8 100755 --- a/apply-colors.sh +++ b/apply-colors.sh @@ -540,6 +540,13 @@ apply_kitty() { echo "Done - please reopen your kitty terminal to see the changes" } +apply_konsole() { + # | + # | Applying values on Konsole + # | =========================================== + +} + apply_darwin() { # | # | Applying values on iTerm2 @@ -898,6 +905,10 @@ case "${TERMINAL}" in apply_kitty ;; + konsole ) + apply_konsole + ;; + * ) printf '%s\n' \ "Unsupported terminal!" \