Dotfiles/setup/modules/optional-Modules/apps/butter.sh

11 lines
292 B
Bash
Executable File

#!/bin/bash
set -euo pipefail
source "$(dirname "${BASH_SOURCE[0]}")/../../lib/logging.sh"
log "Installing btrfs-progs..."
sudo pacman -S --noconfirm --needed btrfs-progs
log "Installing butter (AUR)..."
yay -S --answerdiff None --answerclean All --noconfirm butter
log "butter installed."