Skip to content

Commit

Permalink
Fixes the Problem of installing packages
Browse files Browse the repository at this point in the history
  • Loading branch information
blusewill committed Feb 5, 2024
1 parent 855b441 commit 5c6906c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ nala install kde-plasma-desktop lsb-release flatpak sddm vim ttf-mscorefonts-ins

# Install Default Applications

xargs -a $builddir/pkg-files/default.txt nala install -y
xargs nala install -y < $builddir/pkg-files/default.txt

# Flatpak Essential Programs
# Setting Up flathub repo
Expand All @@ -46,11 +46,11 @@ flatpak remote-add --if-not-exists flathub https://dl.flathub.org/repo/flathub.f

# Start to install

xargs -a $builddir/pkg-files/flatpak.txt flatpak install -y
xargs flatpak install -y < $builddir/pkg-files/flatpak.txt

# Installing Optional Programs

xargs -a $builddir/pkg-files/optional.txt nala install -y
xargs nala install -y < $builddir/pkg-files/optional.txt

# Font Install
cd $builddir
Expand Down

0 comments on commit 5c6906c

Please sign in to comment.