11 lines
318 B
Bash
Executable File
11 lines
318 B
Bash
Executable File
#!/bin/bash
|
|
set -euo pipefail
|
|
source "$(dirname "${BASH_SOURCE[0]}")/../../lib/logging.sh"
|
|
|
|
log "Installing taskwarrior..."
|
|
sudo pacman -S --noconfirm --needed task
|
|
|
|
log "Installing watson and jrnl (AUR)..."
|
|
yay -S --answerdiff None --answerclean All --noconfirm watson python-jrnl
|
|
log "Productivity tools installed."
|