From 34a7db670cfc68a4a7c310907d5cabcd546b3a30 Mon Sep 17 00:00:00 2001 From: AlejandroSuero Date: Sat, 30 Mar 2024 17:27:04 +0000 Subject: [PATCH] fix(dotfiles): ensure watchdog in Ubuntu --- bin/dotfiles | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/bin/dotfiles b/bin/dotfiles index 5a4bd97..fa88608 100755 --- a/bin/dotfiles +++ b/bin/dotfiles @@ -110,6 +110,13 @@ function ubuntu_setup() { _task "Installing Python3 Pip" _cmd "sudo apt-get install -y python3-pip" fi + if ! pip3 list | grep watchdog >/dev/null 2>&1; then + _task "Installing Python3 Watchdog" + _cmd "pip3 install watchdog" + fi + + _task "Setting Locale" + _cmd "sudo localectl set-locale LANG=en_US.UTF-8" } function manjaro_setup() {