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() {