This commit is contained in:
Joey Hafner 2024-06-04 13:00:14 -07:00
parent 7444573d7f
commit 2d5d1da3e9
3 changed files with 29 additions and 4 deletions

View File

@ -1,4 +0,0 @@
#!/bin/bash
sudo dnf install fedora-workstation-repositories
sudo dnf config-manager --set-enabled google-chrome
sudo dnf install google-chrome-stable

View File

@ -0,0 +1,16 @@
FLATPAKS="
org.mozilla.firefox
org.chromium.Chromium
com.google.Chrome
org.flameshot.Flameshot
com.valvesoftware.Steam
net.lutris.Lutris
com.nextcloud.desktopclient.nextcloud
com.obsproject.Studio
md.obsidian.Obsidian
com.spotify.Client
org.videolan.VLC
com.vscodium.codium
"
for flatpak in $(echo "$FLATPAKS"); do echo "Installing: $flatpak" && flatpak install -y $flatpak; done

View File

@ -0,0 +1,13 @@
#!/bin/bash
# Comma-separated list of paths to which each of the model gguf files should be symlinked
LINKED_PATHS="/home/joey/Projects/LLMs/models"
IFS="," read -ra DIR <<< "$LINKED_PATHS"
for dir in "${DIR[@]}"; do
echo "======== GENERATING SYMLINKS FOR: $dir ========"
for file in *.gguf; do
#echo "CMD: ln -s \"$(realpath $file)\" \"$dir/$file\""
ln -s "$(realpath $file)" "$dir/$file"
done
done