From abd1c2ffc9c87ed6c61cbd01cf019cd4a4e062a9 Mon Sep 17 00:00:00 2001 From: Mylloon Date: Mon, 18 Sep 2023 14:20:40 +0200 Subject: [PATCH] use monokai instead of default (its the same theme) --- .config/micro/settings.json | 8 ++++---- .config/update_theme.sh | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.config/micro/settings.json b/.config/micro/settings.json index d7e294a..b753d84 100644 --- a/.config/micro/settings.json +++ b/.config/micro/settings.json @@ -1,9 +1,9 @@ { - "mkparents": true, "colorcolumn": 80, + "colorscheme": "monokai", + "mkparents": true, "rmtrailingws": true, "scrollbar": true, "softwrap": true, - "wordwrap": true, - "colorscheme": "default" -} + "wordwrap": true +} \ No newline at end of file diff --git a/.config/update_theme.sh b/.config/update_theme.sh index de99f9d..9fd8e0c 100755 --- a/.config/update_theme.sh +++ b/.config/update_theme.sh @@ -28,7 +28,7 @@ main() { # Set the fish theme fish -c "fish_config theme choose 'Base16 Eighties' && yes | fish_config theme save" fish -c "set fish_color_comment 5c6773" # custom comment color - sed -i "s/bubblegum/default/g" "$HOME"/.config/micro/settings.json + sed -i "s/bubblegum/monokai/g" "$HOME"/.config/micro/settings.json ;; "sunrise" ) # Go to light mode # Set the Terminal profile @@ -37,7 +37,7 @@ main() { gsettings set org.gnome.Terminal.Legacy.Profile:/org/gnome/terminal/legacy/profiles:/:"${GT_default}"/ background-color "rgb(253,246,227)" # Set the fish theme fish -c "fish_config theme choose 'Solarized Light' && yes | fish_config theme save" - sed -i "s/default/bubblegum/g" "$HOME"/.config/micro/settings.json + sed -i "s/monokai/bubblegum/g" "$HOME"/.config/micro/settings.json ;; * ) echo "Can't interpret given argument" ;;