rearranges more logically, hopefully

This commit is contained in:
2024-11-01 06:27:06 -07:00
parent a2171cea0a
commit 29c613b8cc
20 changed files with 124 additions and 11 deletions

View File

@@ -1,10 +1,13 @@
######################################## nvim
sudo apt install zig -y
snap install nvim --classic
sudo apt install xsel xclip wl-clipboard
sudo apt install ripgrep -y
sudo cp ../sesh /usr/bin
cp ../tmux.conf ~/.tmux.conf
###### Node
######################################## Node
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.7/install.sh | bash
wget -qO- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.7/install.sh | bash
nvm install node
@@ -37,11 +40,27 @@ sudo apt install code -y
# sudo gem install solargraph
##### nerd fonts
######################################## nerd fonts
sudo apt install wget fontconfig &&
wget -P ~/.local/share/fonts https://github.com/ryanoasis/nerd-fonts/releases/latest/download/Meslo.zip &&
cd ~/.local/share/fonts && unzip Meslo.zip && rm *Windows* && rm Meslo.zip && fc-cache -fv
######
######################################## Docker
# Add Docker's official GPG key:
sudo apt-get update
sudo apt-get install ca-certificates curl
sudo install -m 0755 -d /etc/apt/keyrings
sudo curl -fsSL https://download.docker.com/linux/ubuntu/gpg -o /etc/apt/keyrings/docker.asc
sudo chmod a+r /etc/apt/keyrings/docker.asc
sudo apt-get install docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin
# Add the repository to Apt sources:
echo \
"deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.asc] https://download.docker.com/linux/ubuntu \
$(. /etc/os-release && echo "$VERSION_CODENAME") stable" |
sudo tee /etc/apt/sources.list.d/docker.list >/dev/null
sudo apt-get update
####
npm install -g @railway/cli
npm install -g vercel
@@ -49,11 +68,10 @@ npm install -g vercel@latest
cd ~/.config/
git clone http://www.git.noisyserver.sbs/noisycarlos/kitty
git config --global user.email "noisycarlos@hey.com"
git config --global user.name "Carlos Aldana"
git clone https://git.noisyserver.sbs/noisycarlos/kitty
git config --global credential.helper store
git clone https://git.noisyserver.sbs/noisycarlos/nvim
git clone https://git.noisyserver.sbs/noisycarlos/wezterm

Submodule fedora/kitty deleted from cf1fce59ae

Binary file not shown.

View File

@@ -1,19 +1,26 @@
# sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 3FEF9748469ADBE15DA7CA80AC2D62742012EA22
sudo apt install curl -y
sudo apt install btop -y
sudo apt-get install fuse libfuse2 -y
# 1Password
sudo sh -c 'echo "deb [arch=amd64] https://downloads.1password.com/linux/debian/amd64/ stable main" > /etc/apt/sources.list.d/1password.list'
echo 'deb [arch=amd64 signed-by=/usr/share/keyrings/1password-archive-keyring.gpg] https://downloads.1password.com/linux/debian/amd64 stable main' | sudo tee /etc/apt/sources.list.d/1password.list
sudo mkdir -p /etc/debsig/policies/AC2D62742012EA22/
curl -sS https://downloads.1password.com/linux/debian/debsig/1password.pol | sudo tee /etc/debsig/policies/AC2D62742012EA22/1password.pol
sudo mkdir -p /usr/share/debsig/keyrings/AC2D62742012EA22
curl -sS https://downloads.1password.com/linux/keys/1password.asc | sudo gpg --dearmor --output /usr/share/debsig/keyrings/AC2D62742012EA22/debsig.gpg
sudo apt update
sudo apt install 1password -y
sudo apt install btop -y
sudo apt install curl -y
sudo apt-get install fuse libfuse2 -y
# sudo apt install flatseal -y
# sudo apt install gnome-software-plugin-flatpak -y
# sudo apt install gnome-shell-extension-pop-shell x11-utils -y
flatpak install flathub com.yubico.yubioath -y
flatpak install flathub net.nokyan.Resources -y
# Codecs
sudo apt install ubuntu-restricted-extras -y
# Browsers
# flatpak install flathub com.google.Chrome -y
# flatpak install flathub org.waterfoxproject.waterfox -y

2
vfx/popos/blackmagic.sh Normal file
View File

@@ -0,0 +1,2 @@
# sudo apt install libssl3 ocl-icd-opencl-dev fakeroot xorriso
sudo apt install libapr1 libaprutil1 libxcb-cursor0 libxcb-damage

87
vfx/popos/nuke.sh Normal file
View File

@@ -0,0 +1,87 @@
#!/usr/bin/env bash
app_name=Nuke
download_from_source=$1
version=$2
if [ -z "$version" ]; then
version="15.1v3"
fi
vnum="${version%%v*}"
installer_path=~/Downloads/Nuke${version}-linux-x86_64.run
base_url=https://public.noisyserver.sbs/vfx-installers
url=${base_url}/Nuke${version}-linux-x86_64.run
nuke_install_basepath=/usr/bin/Nuke
installation_dir_name=Nuke${version}
if [ -f "${installer_path}" ]; then
download_from_source=s
echo "Installer file already exists"
fi
# echo "${url} -> ${installer_path}"
if [ -z "$download_from_source" ]; then
read -p "Press Enter to start download of ${app_name} ${version}. If file is already downloaded enter 's', or 'c' to cancel: " download_from_source
fi
delete_installer=0
case $download_from_source in
[Ss]*)
echo "Skipped download (if the install fails, check that the installer was downloaded properly)"
;;
[CcNn]*)
echo "Installation cancelled"
exit 0
;;
*)
echo "Downloading ${app_name} Installer..."
curl -# -o ${installer_path}.partial ${url}
rm ${installer_path} >>/dev/null
mv ${installer_path}.partial ${installer_path}
read -p "Download Finished. Press Enter to continue: "
delete_installer=1
;;
esac
sudo chmod +x ${installer_path}
# sudo ${installer_path}
sudo ${installer_path} --accept-foundry-eula
echo "Moving application to bin directory..."
if [ ! -d "${nuke_install_basepath}" ]; then
sudo mkdir ${nuke_install_basepath} >/dev/null
fi
sudo rm -r ${nuke_install_basepath}/${installation_dir_name}
sudo mv ./${installation_dir_name} ${nuke_install_basepath}/
curl -sS -# -o ./nuke.png ${base_url}/nuke.png
sudo mv nuke.png ${nuke_install_basepath}/nuke.png
echo "Installing libraries..."
sudo yum install mesa-libGLU.x86_64 -y
sudo dnf install libxcrypt-compat -y
echo "Creating Application shortcut..."
sudo mkdir -p ~/.local/share/applications/
sudo chmod -R 777 ~/.local/share/applications/
cd ~/.local/share/applications/
echo "#!/usr/bin/env xdg-open
[Desktop Entry]
Version=1.0
Terminal=false
Type=Application
Name=Nuke ${version}
Exec=${nuke_install_basepath}/${installation_dir_name}/Nuke${vnum} --indie
Icon=${nuke_install_basepath}/nuke.png" >${installation_dir_name}.desktop
echo "Cleanup..."
if [ "${delete_installer}" = 1 ]; then
echo "deleting downloaded installer..."
rm ${installer_path}
sudo rm -r ./Nuke${version} >>/dev/null
else
echo "leaving previously-existing installer in place..."
fi
echo "${app_name} installation script finished"