switching from cachy to bazzite kernel

This commit is contained in:
tumillanino
2026-04-09 16:33:56 +10:00
parent 3f52e6286f
commit 57fdc02539
157 changed files with 6309 additions and 7 deletions

View File

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