From 4d03f024ed131d152cf0f675efcd866a8bad1b18 Mon Sep 17 00:00:00 2001 From: Honney Date: Thu, 2 Jul 2026 16:36:28 +0200 Subject: [PATCH] added install.sh and changed default css --- install.sh | 18 ++++++++++++++++++ style.css.example | 16 ++++++++-------- 2 files changed, 26 insertions(+), 8 deletions(-) create mode 100755 install.sh diff --git a/install.sh b/install.sh new file mode 100755 index 0000000..a217563 --- /dev/null +++ b/install.sh @@ -0,0 +1,18 @@ +#!/usr/bin/env bash + +if ! test -f style.css; then + echo "style.css does not exist." + echo "Copying from example..." + cp style.css.example style.css +else + echo "style.css already exists." + read -p "Should it be replaced? [y/N]: " answer + + # Using modern [[ ]] for string comparison is safer in Bash + if [[ "$answer" == "y" || "$answer" == "Y" ]]; then + cp style.css.example style.css + echo "File replaced." + else + echo "Skipped." + fi +fi \ No newline at end of file diff --git a/style.css.example b/style.css.example index 3076f59..eee4d16 100644 --- a/style.css.example +++ b/style.css.example @@ -7,18 +7,18 @@ window { font-size: 13px; font-family: "JetBrains Mono"; - background-color: #191114; + background-color: #14140c; border-radius: 12px; } #outer-box { margin: 16px; - background-color: #191114; + background-color: #14140c; border-radius: 12px; } #inner-box { - background-color: #191114; + background-color: #14140c; border-radius: 12px; } @@ -30,17 +30,17 @@ window { } #entry:selected { - background-color: #6e334d; + background-color: #4c4800; } #entry #text { margin: 14px 0 0; font-weight: normal; - color: #e1bdc9; + color: #ccc8a3; } #entry:selected #text { - color: #ffb0ce; + color: #d0ca74; } #image { @@ -51,10 +51,10 @@ window { #input { background: transparent; margin: 0 8px 12px; - color: #ffb0ce; + color: #d0ca74; padding: 8px 12px; border-radius: 12px; - border-bottom: 2px solid #6e334d; + border-bottom: 2px solid #4c4800; } #scroll {