Skip to content

Commit

Permalink
fix(dotfiles): ensure watchdog in Ubuntu
Browse files Browse the repository at this point in the history
  • Loading branch information
AlejandroSuero committed Mar 30, 2024
1 parent 33c82c3 commit 34a7db6
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions bin/dotfiles
Original file line number Diff line number Diff line change
Expand Up @@ -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() {
Expand Down

0 comments on commit 34a7db6

Please sign in to comment.