From 2ad5a125563efb07ea56a2ddae24d4e3c0a44b68 Mon Sep 17 00:00:00 2001 From: Gil Date: Fri, 1 Sep 2023 15:54:11 +0200 Subject: [PATCH] Ajout fd-find avec alias --- installSystem.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/installSystem.sh b/installSystem.sh index 007fe71..ac8303d 100644 --- a/installSystem.sh +++ b/installSystem.sh @@ -5,10 +5,11 @@ groups | grep -q sudo || echo "Please add $(whoami) to sudo group with : sudo us groups | grep -q sudo || return # sudo usermod -aG sudo $user # pour passer sudoers, puis reboot -sudo apt install -y webext-browserpass webext-ublock-origin-firefox vim vim-nox neomutt curl isync msmtp pass lynx notmuch abook urlview python3 ripgrep +sudo apt install -y webext-browserpass webext-ublock-origin-firefox vim vim-nox neomutt curl isync msmtp pass lynx notmuch abook urlview python3 ripgrep fonts-firacode fd-find echo "*/10 * * * * $HOME/.local/bin/mailsync" > temp && crontab temp && rm temp +[ ! -f "$HOME/.local/bin/fd" ] && ln -s $(which fdfind) ~/.local/bin/fd # Installation oh my bash [ ! -d "$HOME/.oh-my-bash/" ] && bash -c "$(curl -fsSL https://raw.githubusercontent.com/ohmybash/oh-my-bash/master/tools/install.sh)" || echo "oh-my-bash installed"