install scripts. reorganization. soon to be deployable

This commit is contained in:
2025-05-24 04:08:28 -05:00
parent 5010e57533
commit e966d5328d
242 changed files with 407 additions and 45 deletions

0
runs/deploy-env.sh Executable file
View File

9
runs/get-reqs-A-min-arch.sh Executable file
View File

@@ -0,0 +1,9 @@
#!/bin/bash
sudo="sudo"
[ doas ] && sudo="doas"
echo GETTING MIN REQS
$sudo pacman -S neovim rsync man-db wget git lf fzf grep
echo -------------

23
runs/get-reqs-B-current-arch.sh Executable file
View File

@@ -0,0 +1,23 @@
#!/bin/bash
arch="$(uname -r | grep arch)"
artix="$(uname -r | grep artix)"
if [ $artix ] || [ $arch ]; then
sudo="sudo"
[ doas ] && sudo="doas"
echo GETTING CURRENT REQS ARCH
$sudo pacman -S xorg-server libxft libxinerama pipewire-pulse pipewire-alsa pipewire-jack qpwgraph wezterm ttf-inconsolata sddm wayland hyprland waybar xdg-desktop-portal xdg-desktop-portal-hyprland xdg-desktop-portal-gtk zsh vlc v4l2loopback-dkms qt6-wayland qt5-wayland ntfs-3g gnome-keyring inetutils doas cowsay fastfetch yt-dlp ttf-jetbrains-mono ttf-jetbrains-mono-nerd noto-fonts-emoji font-manager atuin gvfs-mtp bat lxappearance cmus grim btop htop rxvt-unicode lf inetutils openrgb reflector steam
# for vr
$sudo pacman -S cli11 eigen glib2 glib2-devel nlohmann-json patch
# git clone https://aur.archlinux.org/paru.git
# cd paru
# makepkg -si
paru -S dunst-git ttf-b612 sddm-theme-tokyo-night-git obs-studio-git gpu-screen-recorder gpu-screen-recorder-gtk
echo ---------------
fi