Cleanup
This commit is contained in:
parent
7444573d7f
commit
2d5d1da3e9
@ -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
|
16
dotfiles_gitea/setup-scripts/fedora-install-flatpaks.sh
Normal file
16
dotfiles_gitea/setup-scripts/fedora-install-flatpaks.sh
Normal 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
|
13
dotfiles_gitea/utility-scripts/llms/generate-symlinks.sh
Executable file
13
dotfiles_gitea/utility-scripts/llms/generate-symlinks.sh
Executable 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
|
Loading…
Reference in New Issue
Block a user