kernel still breaking. updated name which may have been issue

This commit is contained in:
tumillanino
2026-04-09 15:58:55 +10:00
parent 1c59f8a718
commit c6ffa3591f
155 changed files with 6219 additions and 1 deletions

View File

@@ -0,0 +1,18 @@
#!/usr/bin/env bash
set -oue pipefail
echo 'Preparing directory for cloning...'
mkdir -p /tmp/clone
cd /tmp/clone/
echo 'Directory created.'
git clone https://github.com/vinceliuice/Layan-kde.git
echo 'Repo cloned. Running install script...'
Layan-kde/install.sh
echo 'Install script finished. Removing cloned repo...'
rm -r Layan-kde
echo 'Cloned repo deleted.'