mirror of
https://github.com/JaKooLit/Debian-Hyprland.git
synced 2025-12-21 10:20:12 +01:00
updated rofi-wayland.sh To redownload a new rofi-wayland from repo instead of pulling changes. (It proves giving issue)
This commit is contained in:
parent
35d8754c3d
commit
1f679a7330
@ -1,5 +1,8 @@
|
||||
## Changelogs
|
||||
|
||||
## 10 June 2024
|
||||
- changed behaviour of rofi-wayland.sh. To redownload a new rofi-wayland from repo instead of pulling changes. (It proves giving issue)
|
||||
|
||||
## 04 June 2024
|
||||
- switched over to source install for imagemagick
|
||||
- removal of fzf for Debian and Ubuntu (headache)
|
||||
|
||||
@ -55,18 +55,18 @@ printf "${NOTE} Installing rofi-wayland...\n"
|
||||
|
||||
# Check if rofi folder exists
|
||||
if [ -d "rofi" ]; then
|
||||
printf "${NOTE} rofi folder exists. Pulling latest changes...\n"
|
||||
cd rofi || exit 1
|
||||
git pull origin master 2>&1 | tee -a "$MLOG"
|
||||
else
|
||||
printf "${NOTE} Cloning rofi repository...\n"
|
||||
printf "${NOTE} rofi folder exists. Removing existing directory...\n"
|
||||
rm -rf rofi
|
||||
fi
|
||||
|
||||
# cloning rofi-wayland
|
||||
printf "${NOTE} Cloning rofi-wayland repository...\n"
|
||||
if git clone https://github.com/lbonn/rofi.git; then
|
||||
cd rofi || exit 1
|
||||
else
|
||||
echo -e "${ERROR} Download failed for rofi-wayland." 2>&1 | tee -a "$LOG"
|
||||
exit 1
|
||||
fi
|
||||
fi
|
||||
|
||||
# Proceed with the installation steps
|
||||
if meson setup build && ninja -C build ; then
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user