From aff7779d12472995ce128efa5b002b65faed8e8a Mon Sep 17 00:00:00 2001 From: jc <46619361+juancwu@users.noreply.github.com> Date: Mon, 12 Aug 2024 16:25:10 -0400 Subject: [PATCH] use symbolic link for alacritty themes --- bash/.bashrc.arch | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bash/.bashrc.arch b/bash/.bashrc.arch index 8ffd269..0afe6aa 100644 --- a/bash/.bashrc.arch +++ b/bash/.bashrc.arch @@ -244,7 +244,7 @@ if [ $TERM_COLOR_MODE == "light" ]; then if [ $USE_TERM == "alacritty" ]; then theme_link="$HOME/.config/alacritty/theme.toml" rm -rf "$theme_link" - ln "$HOME/ghq/alacritty/alacritty-theme/themes/catppuccin_latte.toml" "$theme_link" + ln -s "$HOME/ghq/alacritty/alacritty-theme/themes/catppuccin_latte.toml" "$theme_link" fi else if [ $USE_TERM == "kitty" ]; then @@ -253,7 +253,7 @@ else if [ $USE_TERM == "alacritty" ]; then theme_link="$HOME/.config/alacritty/theme.toml" rm -r "$theme_link" - ln "$HOME/ghq/alacritty/alacritty-theme/themes/catppuccin_mocha.toml" "$theme_link" + ln -s "$HOME/ghq/alacritty/alacritty-theme/themes/catppuccin_mocha.toml" "$theme_link" fi fi