Skip to content

Commit

Permalink
fixed packages.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
FrancescoXD committed Aug 5, 2021
1 parent fead5e4 commit 4e558fa
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ makepkg -si
cd ..

# Install st (siduck76's build)
echo "Do you want to have transparency in st? (It needs picom)"
echo "Do you want to have transparency in st? You need also picom (y/n)"
echo -n "=> "
read -r transparency

Expand All @@ -23,11 +23,11 @@ sudo make install
cd ..

# Picom
echo "Do you want to use picom?"
echo "Do you want to use picom? (y/n)"
echo -n "=> "
read -r picom

if [ $dm = "y" ] || [ $dm = "Y" ]; then
if [ $picom = "y" ] || [ $picom = "Y" ]; then
git clone https://aur.archlinux.org/picom-ibhagwan-git.git
cd picom-ibhagwan-git
makepkg -si
Expand Down

0 comments on commit 4e558fa

Please sign in to comment.