mirror of
https://github.com/ItsDrike/dotfiles.git
synced 2024-11-10 02:39:40 +00:00
Don't end the script if the repos were already cloned
This commit is contained in:
parent
4c19890318
commit
32ed1b9a7d
|
@ -95,7 +95,7 @@ yay -S --noconfirm --needed \
|
||||||
xorg-xinput libxrender pixman wayland-protocols cairo pango seatd libxkbcommon xcb-util-wm xorg-xwayland \
|
xorg-xinput libxrender pixman wayland-protocols cairo pango seatd libxkbcommon xcb-util-wm xorg-xwayland \
|
||||||
libinput libliftoff libdisplay-info cpio
|
libinput libliftoff libdisplay-info cpio
|
||||||
mkdir -p ~/.local/src
|
mkdir -p ~/.local/src
|
||||||
git clone --recursive https://github.com/hyprwm/Hyprland ~/.local/src/Hyprland
|
git clone --recursive https://github.com/hyprwm/Hyprland ~/.local/src/Hyprland | true # don't fail if exists
|
||||||
pushd ~/.local/src
|
pushd ~/.local/src
|
||||||
git checkout "$(git rev-list --tags --max-count=1)" # check out the last tag (latest stable release)
|
git checkout "$(git rev-list --tags --max-count=1)" # check out the last tag (latest stable release)
|
||||||
sudo make install
|
sudo make install
|
||||||
|
@ -115,7 +115,7 @@ sudo pacman -S --noconfirm --needed \
|
||||||
sudo rustup default stable
|
sudo rustup default stable
|
||||||
# Use a fork instead of the original elkowar/eww, for system tray suppot
|
# Use a fork instead of the original elkowar/eww, for system tray suppot
|
||||||
sudo mkdir -p /usr/local/src
|
sudo mkdir -p /usr/local/src
|
||||||
sudo git clone https://github.com/railsmark/eww /usr/local/src/eww
|
sudo git clone https://github.com/railsmark/eww /usr/local/src/eww | true # don't fail if exists
|
||||||
pushd /usr/local/src/eww
|
pushd /usr/local/src/eww
|
||||||
sudo git checkout tray-3
|
sudo git checkout tray-3
|
||||||
sudo cargo build --release --no-default-features --features=wayland
|
sudo cargo build --release --no-default-features --features=wayland
|
||||||
|
|
Loading…
Reference in a new issue