aboutsummaryrefslogtreecommitdiff
path: root/runs
diff options
context:
space:
mode:
Diffstat (limited to 'runs')
-rwxr-xr-xruns/deploy-env.sh0
-rwxr-xr-xruns/get-reqs-A-min-arch.sh9
-rwxr-xr-xruns/get-reqs-B-current-arch.sh23
3 files changed, 32 insertions, 0 deletions
diff --git a/runs/deploy-env.sh b/runs/deploy-env.sh
new file mode 100755
index 0000000..e69de29
--- /dev/null
+++ b/runs/deploy-env.sh
diff --git a/runs/get-reqs-A-min-arch.sh b/runs/get-reqs-A-min-arch.sh
new file mode 100755
index 0000000..f054d89
--- /dev/null
+++ b/runs/get-reqs-A-min-arch.sh
@@ -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 -------------
diff --git a/runs/get-reqs-B-current-arch.sh b/runs/get-reqs-B-current-arch.sh
new file mode 100755
index 0000000..3c38461
--- /dev/null
+++ b/runs/get-reqs-B-current-arch.sh
@@ -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