From 8e02f6c75128d115bfea3c719008a73c3575d644 Mon Sep 17 00:00:00 2001 From: "Robin C." Date: Thu, 9 Jan 2025 04:23:38 +0100 Subject: [PATCH] Fix typos --- opensuse/setup.sh | 2 +- setup.sh | 10 +++------- 2 files changed, 4 insertions(+), 8 deletions(-) diff --git a/opensuse/setup.sh b/opensuse/setup.sh index ab22fe2..7926e01 100755 --- a/opensuse/setup.sh +++ b/opensuse/setup.sh @@ -158,7 +158,7 @@ sudo zypper --non-interactive install bitwarden curl -o "$HOME/Downloads/telegram.tar.xz" https://telegram.org/dl/desktop/linux -L sudo tar -xf "$HOME/Downloads/telegram.tar.xz" -C "/opt" rm "$HOME/Downloads/telegram.tar.xz" -sudo ln -s "/opt/Telegram/Telegram" "/usr/bin/telegram-desktop" +sudo ln -sf "/opt/Telegram/Telegram" "/usr/bin/telegram-desktop" # Start Telegram to get a .desktop file, then close it telegram-desktop -startintray & sleep 5 diff --git a/setup.sh b/setup.sh index 45dfee6..9e8379c 100755 --- a/setup.sh +++ b/setup.sh @@ -37,24 +37,20 @@ echo "Applying dotfiles..." echo echo "Applying tmux dotfile..." mkdir -p $XDG_CONFIG_HOME/tmux -ln -sf $SCRIPT_DIR/tmux.conf $XDG_CONFIG_HOME/tmux/tmux.conf -# Run tmux one, then quite it -tmux new-session -d -s temp -# Kill all of tmux -tmux kill-server +ln -sf $SCRIPT_DIR/tmux/tmux.conf $XDG_CONFIG_HOME/tmux/tmux.conf ~/.tmux/plugins/tpm/bin/install_plugins # Albert echo echo "Applying Albert dotfile..." mkdir -p $XDG_CONFIG_HOME/albert -ln -sf $SCRIPT_DIR/config $XDG_CONFIG_HOME/albert/config +ln -sf $SCRIPT_DIR/albert/config $XDG_CONFIG_HOME/albert/config # Alacritty echo echo "Applying Alacritty dotfile..." mkdir -p $XDG_CONFIG_HOME/alacritty -ln -sf $SCRIPT_DIR/hezkore.toml $XDG_CONFIG_HOME/alacritty/hezkore.toml +ln -sf $SCRIPT_DIR/alacritty/hezkore.toml $XDG_CONFIG_HOME/alacritty/hezkore.toml # OVERWRITE alacritty.toml echo '[general]' > $XDG_CONFIG_HOME/alacritty/alacritty.toml echo 'import = [ "./hezkore.toml" ]' >> $XDG_CONFIG_HOME/alacritty/alacritty.toml