update for cachyos

This commit is contained in:
Johannes Knopp
2025-07-08 17:57:33 +02:00
parent c669943a4d
commit a17e29ff72
2 changed files with 4 additions and 1 deletions

View File

@ -17,7 +17,8 @@ create_symlink() {
install_package() {
local package=$1
if ! command_exists "$package"; then
sudo dnf update && sudo dnf install "$package"
# sudo dnf update && sudo dnf install "$package"
sudo pacman -S "$package"
fi
}