From a135a0465253f74ea2a73e766dc7799ac4ea37e7 Mon Sep 17 00:00:00 2001 From: taicrafter Date: Tue, 12 May 2026 11:50:07 +0200 Subject: [PATCH] Arch MakeMKV Installer --- arch/apps.txt | 3 ++- arch/installers/makemkv.sh | 5 +++++ setup.sh | 1 + 3 files changed, 8 insertions(+), 1 deletion(-) create mode 100644 arch/installers/makemkv.sh diff --git a/arch/apps.txt b/arch/apps.txt index fc0e7cb..66a635b 100644 --- a/arch/apps.txt +++ b/arch/apps.txt @@ -1 +1,2 @@ -yay \ No newline at end of file +yay +makemkv \ No newline at end of file diff --git a/arch/installers/makemkv.sh b/arch/installers/makemkv.sh new file mode 100644 index 0000000..3b3dd48 --- /dev/null +++ b/arch/installers/makemkv.sh @@ -0,0 +1,5 @@ +#!/bin/bash +yay -S makemkv +echo "Fixing Drive Permissions..." +echo sg > /etc/modules-load.d/sg.conf +sudo modprobe sg \ No newline at end of file diff --git a/setup.sh b/setup.sh index 2783eda..a4890e6 100755 --- a/setup.sh +++ b/setup.sh @@ -45,6 +45,7 @@ function AppInstaller(){ echo "Downloading Installer: $SOURCE" curl -fsSL "$SOURCE" -o "$TMP_FILE" bash "$TMP_FILE" < /dev/tty + echo "Finished $APPNAME Installer!" fi done <<< "$APPS" else