From 1841281be90dc67de9cc4e7793b9a798e72e51ab Mon Sep 17 00:00:00 2001 From: Dimitri Graf Date: Sat, 20 Nov 2021 13:40:40 +0100 Subject: [PATCH 1/2] Fix color for comments in shell This change makes comments in the shell the same color as defined in the Vim colors. Before, commenting something out in the shell would make it invisible because the same color was used as for the background. --- gnome-terminal/onehalfdark.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnome-terminal/onehalfdark.sh b/gnome-terminal/onehalfdark.sh index 5fe1a7b..a9374b5 100644 --- a/gnome-terminal/onehalfdark.sh +++ b/gnome-terminal/onehalfdark.sh @@ -59,7 +59,7 @@ if which "$DCONF" > /dev/null 2>&1; then # update profile values with theme options dset visible-name "'$PROFILE_NAME'" - dset palette "['#282c34', '#e06c75', '#98c379', '#e5c07b', '#61afef', '#c678dd', '#56b6c2', '#dcdfe4', '#282c34', '#e06c75', '#98c379', '#e5c07b', '#61afef', '#c678dd', '#56b6c2', '#dcdfe4']" + dset palette "['#5c6370', '#e06c75', '#98c379', '#e5c07b', '#61afef', '#c678dd', '#56b6c2', '#dcdfe4', '#282c34', '#e06c75', '#98c379', '#e5c07b', '#61afef', '#c678dd', '#56b6c2', '#dcdfe4']" dset background-color "'#282c34'" dset foreground-color "'#dcdfe4'" @@ -109,7 +109,7 @@ glist_append() { glist_append string /apps/gnome-terminal/global/profile_list "$PROFILE_SLUG" gset string visible_name "$PROFILE_NAME" -gset string palette "#282c34:#e06c75:#98c379:#e5c07b:#61afef:#c678dd:#56b6c2:#dcdfe4:#282c34:#e06c75:#98c379:#e5c07b:#61afef:#c678dd:#56b6c2:#dcdfe4" +gset string palette "#5c6370:#e06c75:#98c379:#e5c07b:#61afef:#c678dd:#56b6c2:#dcdfe4:#282c34:#e06c75:#98c379:#e5c07b:#61afef:#c678dd:#56b6c2:#dcdfe4" gset string background_color "#282c34" gset string foreground_color "#dcdfe4" gset string bold_color "#dcdfe4" From f539141be5266870669d1be090fe304dab7cd5eb Mon Sep 17 00:00:00 2001 From: Dimitri Graf Date: Mon, 24 Jan 2022 19:41:25 +0100 Subject: [PATCH 2/2] Fix colors for gnome terminal light theme comments --- gnome-terminal/onehalflight.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnome-terminal/onehalflight.sh b/gnome-terminal/onehalflight.sh index 6e10c61..f477634 100644 --- a/gnome-terminal/onehalflight.sh +++ b/gnome-terminal/onehalflight.sh @@ -59,7 +59,7 @@ if which "$DCONF" > /dev/null 2>&1; then # update profile values with theme options dset visible-name "'$PROFILE_NAME'" - dset palette "['#383a42', '#e45649', '#50a14f', '#c18401', '#0184bc', '#a626a4', '#0997b3', '#fafafa', '#4f525e', '#e06c75', '#98c379', '#e5c07b', '#61afef', '#c678dd', '#56b6c2', '#ffffff']" + dset palette "['#a0a1a7', '#e45649', '#50a14f', '#c18401', '#0184bc', '#a626a4', '#0997b3', '#fafafa', '#4f525e', '#e06c75', '#98c379', '#e5c07b', '#61afef', '#c678dd', '#56b6c2', '#ffffff']" dset background-color "'#fafafa'" dset foreground-color "'#383a42'" @@ -109,7 +109,7 @@ glist_append() { glist_append string /apps/gnome-terminal/global/profile_list "$PROFILE_SLUG" gset string visible_name "$PROFILE_NAME" -gset string palette "#383a42:#e45649:#50a14f:#c18401:#0184bc:#a626a4:#0997b3:#fafafa:#4f525e:#e06c75:#98c379:#e5c07b:#61afef:#c678dd:#56b6c2:#ffffff" +gset string palette "#a0a1a7:#e45649:#50a14f:#c18401:#0184bc:#a626a4:#0997b3:#fafafa:#4f525e:#e06c75:#98c379:#e5c07b:#61afef:#c678dd:#56b6c2:#ffffff" gset string background_color "#fafafa" gset string foreground_color "#383a42" gset string bold_color "#383a42"