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/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.'

View File

@@ -0,0 +1,27 @@
#!/usr/bin/env bash
set -euo pipefail
GIT=https://github.com/pkgforge-dev/Citron-AppImage
APPDIR=/usr/libexec/appimages
GITOWNER=$(echo "$GIT" | sed -E 's#https://github.com/([^/]+)/([^/]+)(\.git)*#\1#')
GITREPO=$(echo "$GIT" | sed -E 's#https://github.com/([^/]+)/([^/]+)(\.git)*#\2#')
APPNAME=citron
echo 'Downloading latest version of $APPNAME from $GITOWNER/$GITREPO'.
URL="https://github.com/$GITOWNER/$GITREPO/releases/download/v$(curl https://api.github.com/repos/$GITOWNER/$GITREPO/releases/latest | grep tag_name | cut -d : -f2 | tr -d "v\", ")/Citron-v$(curl https://api.github.com/repos/$GITOWNER/$GITREPO/releases/latest | grep tag_name | cut -d : -f2 | tr -d "v\", ")-anylinux-x86_64_v3.AppImage"
echo "Downloading $URL as $APPDIR/$APPNAME.AppImage"
mkdir -p $APPDIR
curl -L "$URL" -o "$APPDIR/$APPNAME.AppImage"
echo "Download finished! Making $APPNAME executable..."
chmod +x $APPDIR/$APPNAME.AppImage
echo "Creating symlink to /usr/bin/$APPNAME..."
ln -sf $APPDIR/$APPNAME.AppImage /usr/bin/$APPNAME
echo "/usr/bin/$APPNAME symlink created!"

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.'

View File

@@ -0,0 +1,25 @@
#!/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/Notify-ctrl/Plasma-Overdose.git
echo 'Repo cloned. Copying files...'
# theme
cp -r ./Plasma-Overdose/aurorae/ /usr/share/aurorae/themes
# cursors
cp -r ./Plasma-Overdose/cursors /usr/share/icons/CursorsOverdose/
# colorscheme
cp -r ./Plasma-Overdose/colorschemes/* /usr/share/color-schemes/
# global theme
cp -r ./Plasma-Overdose/plasma /usr/share/
echo 'Folders copied. Cleaning up!'
rm -drf Plasma-Overdose/
echo 'Cloned repo deleted.'

View File

@@ -0,0 +1,27 @@
#!/usr/bin/env bash
set -euo pipefail
GIT=https://github.com/Ryubing/Ryujinx
APPDIR=/usr/libexec/appimages
GITOWNER=$(echo "$GIT" | sed -E 's#https://github.com/([^/]+)/([^/]+)(\.git)*#\1#')
GITREPO=$(echo "$GIT" | sed -E 's#https://github.com/([^/]+)/([^/]+)(\.git)*#\2#')
APPNAME=$GITREPO
echo 'Downloading latest version of $APPNAME from $GITOWNER/$GITREPO'.
URL="https://github.com/$GITOWNER/$GITREPO/releases/download/$(curl https://api.github.com/repos/$GITOWNER/$GITREPO/releases/latest | grep tag_name | cut -d : -f2 | tr -d "v\", ")/ryujinx-$(curl https://api.github.com/repos/$GITOWNER/$GITREPO/releases/latest | grep tag_name | cut -d : -f2 | tr -d "v\", ")-x64.AppImage"
echo "Downloading $URL as $APPDIR/$APPNAME.AppImage"
mkdir -p $APPDIR
curl -L "$URL" -o "$APPDIR/$APPNAME.AppImage"
echo "Download finished! Making $APPNAME executable..."
chmod +x $APPDIR/$APPNAME.AppImage
echo "Creating symlink to /usr/bin/$APPNAME..."
ln -sf $APPDIR/$APPNAME.AppImage /usr/bin/$APPNAME
echo "/usr/bin/$APPNAME symlink created!"

View File

@@ -0,0 +1,28 @@
#!/usr/bin/env bash
set -euo pipefail
GIT=https://github.com/SteamGridDB/steam-rom-manager
APPDIR=/usr/libexec/appimages
GITOWNER=$(echo "$GIT" | sed -E 's#https://github.com/([^/]+)/([^/]+)(\.git)*#\1#')
GITREPO=$(echo "$GIT" | sed -E 's#https://github.com/([^/]+)/([^/]+)(\.git)*#\2#')
# APPNAME=$GITREPO
APPNAME=Steam-ROM-Manager # Manually entered because their release name != git repo name
echo 'Downloading latest version of $APPNAME from $GITOWNER/$GITREPO'.
URL="https://github.com/$GITOWNER/$GITREPO/releases/download/v$(curl https://api.github.com/repos/$GITOWNER/$GITREPO/releases/latest | grep tag_name | cut -d : -f2 | tr -d "v\", ")/$APPNAME-$(curl https://api.github.com/repos/$GITOWNER/$GITREPO/releases/latest | grep tag_name | cut -d : -f2 | tr -d "v\", ").AppImage"
echo "Downloading $URL as $APPDIR/$APPNAME.AppImage"
mkdir -p $APPDIR
curl -L "$URL" -o "$APPDIR/$APPNAME.AppImage"
echo "Download finished! Making $APPNAME executable..."
chmod +x $APPDIR/$APPNAME.AppImage
echo "Creating symlink to /usr/bin/$APPNAME..."
ln -sf $APPDIR/$APPNAME.AppImage /usr/bin/$APPNAME
echo "/usr/bin/$APPNAME symlink created!"