Fix typos

This commit is contained in:
Robin C. 2025-01-09 04:23:38 +01:00
parent 9f5c7aed71
commit 8e02f6c751
2 changed files with 4 additions and 8 deletions

View File

@ -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

View File

@ -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