From 7839a25baabc1a9489289d86a2a9b3d718a6c577 Mon Sep 17 00:00:00 2001 From: Thomas Riboulet Date: Wed, 4 May 2022 07:36:14 +0200 Subject: [PATCH] add laptop.local example --- laptop.local.example | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 laptop.local.example diff --git a/laptop.local.example b/laptop.local.example new file mode 100644 index 0000000..60b64b9 --- /dev/null +++ b/laptop.local.example @@ -0,0 +1,19 @@ +# move this file to ~/.laptop.local and edit to your liking + +fancy_echo "Installing favorite editor" +brew install --cask visual-studio-code + +fancy_echo "Installing bat (cat with wings)" +brew install bat + +fancy_echo "Installing Obsidian (markdown editor and knowledge base manager)" +brew install --cask obsidian + +fancy_echo "Cleaning up old Homebrew formulae ..." +brew cleanup +brew cask cleanup + +if [ -r "$HOME/.rcrc" ]; then + fancy_echo "Updating dotfiles ..." + rcup +fi