From b50bc7a26800553738142326b76263cdc47dddff Mon Sep 17 00:00:00 2001 From: Brian Zalewski Date: Sat, 24 Sep 2022 00:36:12 +0000 Subject: [PATCH] Update dotfiles/.local/bin/install-terminal-theme --- dotfiles/.local/bin/install-terminal-theme | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/dotfiles/.local/bin/install-terminal-theme b/dotfiles/.local/bin/install-terminal-theme index 03406ea3..784c0e51 100644 --- a/dotfiles/.local/bin/install-terminal-theme +++ b/dotfiles/.local/bin/install-terminal-theme @@ -1,6 +1,14 @@ #!/usr/bin/env bash +# @file ~/.local/bin/install-terminal-theme +# @brief Applies the Sweet KDE (Betelgeuse) theme [found here](https://store.kde.org/p/1297008/) +# @description +# This script will create the necessary color profile for the Betelgeuse theme +# to any terminal. Before applying the theme, it will display the color palette +# in the terminal and prompt for whether or not it should be applied. It might +# also be necessary to apply the terminal theme which should be available in the +# terminals settings after it is generated. + -# Flat Remix Theme export COLOR_01="#282C34" # Black export COLOR_02="#ED254E" # Red export COLOR_03="#71F79F" # Green @@ -19,10 +27,10 @@ export COLOR_14="#EB71AD" # Light Magenta export COLOR_15="#24E5FF" # Light Cyan export COLOR_16="#FFFFFF" # White -export BACKGROUND_COLOR="#B1880B" # Background Color +export BACKGROUND_COLOR="#161925" # Background Color export FOREGROUND_COLOR="#C3C7D1" # Foreground Color (text) export CURSOR_COLOR="$FOREGROUND_COLOR" # Cursor color -export PROFILE_NAME="Flat Remix" +export PROFILE_NAME="Betelgeuse" # | # | Early pre-requisites check