-
Notifications
You must be signed in to change notification settings - Fork 253
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
allow different os-releases and hyprland setup (#1013)
* allow different os-releases and hypr setup * Update core/src/inner.rs Co-authored-by: Adam Perkowski <[email protected]> * Update core/tabs/system-setup/debian/hyprland-kool-deb.sh Co-authored-by: Adam Perkowski <[email protected]> * Update core/tabs/system-setup/arch/hyprland-kool.sh Co-authored-by: Adam Perkowski <[email protected]> * Update core/tabs/system-setup/fedora/hyprland-kool-fed.sh Co-authored-by: Adam Perkowski <[email protected]> * Update core/tabs/system-setup/tab_data.toml Co-authored-by: Adam Perkowski <[email protected]> * Update core/tabs/system-setup/tab_data.toml Co-authored-by: Adam Perkowski <[email protected]> * Update core/tabs/system-setup/tab_data.toml Co-authored-by: Adam Perkowski <[email protected]> * Update core/tabs/system-setup/tab_data.toml Co-authored-by: Adam Perkowski <[email protected]> * Update core/tabs/system-setup/ubuntu/hyprland-kool-ubuntu24.sh Co-authored-by: Adam Perkowski <[email protected]> * refactor: Improve File Contains precondition (#1016) * Update inner.rs (#1021) * Update inner.rs (#1022) * revert to liams commit * Update core/tabs/system-setup/arch/hyprland-kool.sh Co-authored-by: nyx <[email protected]> * Update core/tabs/system-setup/debian/hyprland-kool-deb.sh Co-authored-by: nyx <[email protected]> * Update core/tabs/system-setup/fedora/hyprland-kool-fed.sh Co-authored-by: nyx <[email protected]> * Update core/tabs/system-setup/arch/hyprland-kool.sh Co-authored-by: nyx <[email protected]> * Update core/tabs/system-setup/debian/hyprland-kool-deb.sh Co-authored-by: nyx <[email protected]> * Update core/tabs/system-setup/debian/hyprland-kool-deb.sh Co-authored-by: nyx <[email protected]> * Update core/tabs/system-setup/arch/hyprland-kool.sh Co-authored-by: nyx <[email protected]> * Update core/tabs/system-setup/arch/hyprland-kool.sh Co-authored-by: nyx <[email protected]> * Update core/tabs/system-setup/arch/hyprland-kool.sh Co-authored-by: nyx <[email protected]> * Update core/tabs/system-setup/arch/hyprland-kool.sh Co-authored-by: nyx <[email protected]> * fix bashisms * Switch to SH from bash --------- Co-authored-by: Adam Perkowski <[email protected]> Co-authored-by: Liam <[email protected]> Co-authored-by: nyx <[email protected]>
- Loading branch information
1 parent
a6ccaf4
commit efa6ff9
Showing
6 changed files
with
105 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
#!/bin/sh | ||
|
||
. ../../common-script.sh | ||
|
||
printf "%b\n" "${YELLOW}Starting Hyprland JaKooLit installation${RC}" | ||
|
||
if ! pacman -Q base-devel >/dev/null 2>&1; then | ||
printf "%b\n" "${YELLOW}Installing base-devel...${RC}" | ||
"$ESCALATION_TOOL" pacman -S --noconfirm base-devel | ||
fi | ||
|
||
git clone --depth=1 https://github.com/JaKooLit/Arch-Hyprland.git "$HOME/Arch-Hyprland" || { printf "%b\n" "${RED}Failed to clone Jakoolits Arch-Hyprland repo${RC}"; exit 1; } | ||
cd "$HOME/Arch-Hyprland" || { printf "%b\n" "${RED}Failed to navigate to Arch-Hyprland directory${RC}"; exit 1; } | ||
chmod +x install.sh | ||
./install.sh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
#!/bin/sh | ||
|
||
. ../../common-script.sh | ||
|
||
printf "%b\n" "${YELLOW}Starting Hyprland JaKooLit installation${RC}" | ||
git clone --depth=1 https://github.com/JaKooLit/Debian-Hyprland.git "$HOME/Debian-Hyprland" || { printf "%b\n" "${RED}Failed to clone Jakoolits Debian-Hyprland repo${RC}"; exit 1; } | ||
cd "$HOME/Debian-Hyprland" || { printf "%b\n" "${RED}Failed to navigate to Debian-Hyprland directory${RC}"; exit 1; } | ||
chmod +x install.sh | ||
./install.sh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
#!/bin/sh | ||
|
||
. ../../common-script.sh | ||
|
||
printf "%b\n" "${YELLOW}Starting Hyprland JaKooLit installation${RC}" | ||
|
||
git clone --depth=1 https://github.com/JaKooLit/Fedora-Hyprland.git "$HOME/Fedora-Hyprland" || { printf "%b\n" "${RED}Failed to clone Jakoolits Fedora-Hyprland repo${RC}"; exit 1; } | ||
cd "$HOME/Fedora-Hyprland" || { printf "%b\n" "${RED}Failed to navigate to Fedora-Hyprland directory${RC}"; exit 1; } | ||
chmod +x install.sh | ||
./install.sh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
#!/bin/sh | ||
|
||
. ../../common-script.sh | ||
|
||
printf "%b\n" "${YELLOW}Starting Hyprland JaKooLit installation${RC}" | ||
|
||
git clone -b 24.04 --depth=1 https://github.com/JaKooLit/Ubuntu-Hyprland.git "$HOME/Ubuntu-Hyprland-24.04" || { printf "%b\n" "${RED}Failed to clone Jakoolits Ubuntu-Hyprland repo${RC}"; exit 1; } | ||
cd "$HOME/Ubuntu-Hyprland-24.04" || { printf "%b\n" "${RED}Failed to navigate to Ubuntu-Hyprland-24.04 directory${RC}"; exit 1; } | ||
chmod +x install.sh | ||
./install.sh |