From f135de3fa30f1fe7aee1f91de94a9f6e307b8dd2 Mon Sep 17 00:00:00 2001 From: Ivan Lepekha <57459428+FluffyPunk@users.noreply.github.com> Date: Fri, 3 Jul 2026 19:01:08 +0300 Subject: [PATCH 1/4] Comment out setupGhosttyConfig in ghostty-setup.sh Comment out setupGhosttyConfig for potential recovery. --- core/tabs/applications-setup/ghostty-setup.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/core/tabs/applications-setup/ghostty-setup.sh b/core/tabs/applications-setup/ghostty-setup.sh index 73b00ff58..085d9bf6b 100644 --- a/core/tabs/applications-setup/ghostty-setup.sh +++ b/core/tabs/applications-setup/ghostty-setup.sh @@ -36,4 +36,5 @@ setupGhosttyConfig() { checkEnv installGhostty -setupGhosttyConfig +# This will be left, but commented in case Chris will decide to recover his ghostty config +# setupGhosttyConfig From 276953faac3bf594f6ee7c1f16bcbd00898a8ae7 Mon Sep 17 00:00:00 2001 From: Ivan Lepekha <57459428+FluffyPunk@users.noreply.github.com> Date: Fri, 3 Jul 2026 19:08:07 +0300 Subject: [PATCH 2/4] I had better thought of you... Comment out setupRofiConfig to allow for recovery of deleted Rofi config. --- core/tabs/applications-setup/rofi-setup.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/core/tabs/applications-setup/rofi-setup.sh b/core/tabs/applications-setup/rofi-setup.sh index 7b7f92659..b98a91549 100755 --- a/core/tabs/applications-setup/rofi-setup.sh +++ b/core/tabs/applications-setup/rofi-setup.sh @@ -41,4 +41,5 @@ setupRofiConfig() { checkEnv installRofi -setupRofiConfig +# Commented out in case Chris remembers that he deleted Rofi config and will recover that +#setupRofiConfig From f510ca7619916f107289afd17b6c699b797f9da6 Mon Sep 17 00:00:00 2001 From: Ivan Lepekha <57459428+FluffyPunk@users.noreply.github.com> Date: Fri, 3 Jul 2026 19:21:27 +0300 Subject: [PATCH 3/4] If Chris said to remove... Removed the setupGhosttyConfig function and its calls from the script. --- core/tabs/applications-setup/ghostty-setup.sh | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/core/tabs/applications-setup/ghostty-setup.sh b/core/tabs/applications-setup/ghostty-setup.sh index 085d9bf6b..bc3c90f35 100644 --- a/core/tabs/applications-setup/ghostty-setup.sh +++ b/core/tabs/applications-setup/ghostty-setup.sh @@ -24,17 +24,5 @@ installGhostty() { fi } -setupGhosttyConfig() { - printf "%b\n" "${YELLOW}Copying ghostty config files...${RC}" - if [ -d "${HOME}/.config/ghostty" ] && [ ! -d "${HOME}/.config/ghostty-bak" ]; then - cp -r "${HOME}/.config/ghostty" "${HOME}/.config/ghostty-bak" - fi - mkdir -p "${HOME}/.config/ghostty/" - curl -sSLo "${HOME}/.config/ghostty/config" "https://raw.githubusercontent.com/ChrisTitusTech/dwm-titus/main/config/ghostty/config" - printf "%b\n" "${GREEN}Ghostty configuration files copied.${RC}" -} - checkEnv installGhostty -# This will be left, but commented in case Chris will decide to recover his ghostty config -# setupGhosttyConfig From 6687c826e0e722ada2812991b58e4b9dc9202c59 Mon Sep 17 00:00:00 2001 From: Ivan Lepekha <57459428+FluffyPunk@users.noreply.github.com> Date: Fri, 3 Jul 2026 19:22:03 +0300 Subject: [PATCH 4/4] ... I have no need to be asked twice Comment out the setupRofiConfig function to prevent execution. --- core/tabs/applications-setup/rofi-setup.sh | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/core/tabs/applications-setup/rofi-setup.sh b/core/tabs/applications-setup/rofi-setup.sh index b98a91549..fdcd0921d 100755 --- a/core/tabs/applications-setup/rofi-setup.sh +++ b/core/tabs/applications-setup/rofi-setup.sh @@ -24,22 +24,6 @@ installRofi() { fi } -setupRofiConfig() { - printf "%b\n" "${YELLOW}Copying Rofi configuration files...${RC}" - if [ -d "$HOME/.config/rofi" ] && [ ! -d "$HOME/.config/rofi-bak" ]; then - cp -r "$HOME/.config/rofi" "$HOME/.config/rofi-bak" - fi - mkdir -p "$HOME/.config/rofi" - curl -sSLo "$HOME/.config/rofi/powermenu.sh" https://github.com/ChrisTitusTech/dwm-titus/raw/main/config/rofi/powermenu.sh - chmod +x "$HOME/.config/rofi/powermenu.sh" - curl -sSLo "$HOME/.config/rofi/config.rasi" https://github.com/ChrisTitusTech/dwm-titus/raw/main/config/rofi/config.rasi - mkdir -p "$HOME/.config/rofi/themes" - curl -sSLo "$HOME/.config/rofi/themes/nord.rasi" https://github.com/ChrisTitusTech/dwm-titus/raw/main/config/rofi/themes/nord.rasi - curl -sSLo "$HOME/.config/rofi/themes/sidetab-nord.rasi" https://github.com/ChrisTitusTech/dwm-titus/raw/main/config/rofi/themes/sidetab-nord.rasi - curl -sSLo "$HOME/.config/rofi/themes/powermenu.rasi" https://github.com/ChrisTitusTech/dwm-titus/raw/main/config/rofi/themes/powermenu.rasi -} checkEnv installRofi -# Commented out in case Chris remembers that he deleted Rofi config and will recover that -#setupRofiConfig