Compare commits

..

No commits in common. "4e928c2306992fa71be80917ff87e81f49c7ca0d" and "21208c1afa9a23cc756b651c9b3250aefb0f55c4" have entirely different histories.

1 changed files with 0 additions and 78 deletions

View File

@ -1,76 +1,15 @@
#!/bin/bash #!/bin/bash
pac_list=( pac_list=(
alacritty
at
automake
autopep8
base
base-devel
bash-completion
bash-language-server
bc
brightnessctl
chromium
dmidecode
entr
eslint_d
feh
firefox-developer-edition
firefox-tridactyl
firefox-tridactyl-native
firefox-tridactyl-native-debug
fzf
gcc
git git
haskell-language-server
haskell-ormolu
hsetroot
htop
httpie
jq
keepassxc
lua-language-server
make
man-db
man-pages
neovim neovim
nmap
nodejs-lts-jod nodejs-lts-jod
pacman-contrib
pandoc-cli
pandoc-crossref
parallel
pass
pkgbuild-language-server
pnpm
sshfs
stylelint
svelte-language-server
tailwindcss-language-server
task
tldr
tmux
tmuxp
tree
tree-sitter-cli
ts-node
typescript-language-server
unzip
vim-language-server
wget
yaml-language-server
) )
aurpac_list=( aurpac_list=(
hadolint-bin
nvm nvm
nvimpager
paru
tmux-bash-completion-git
ttf-iosevka-term-ss08 ttf-iosevka-term-ss08
vim-plug vim-plug
vtsls
xbanish xbanish
) )
@ -163,21 +102,6 @@ configure_gnome() {
announce "Configuring Gnome"; setup-gnome announce "Configuring Gnome"; setup-gnome
} }
setup_firewall() {
announce "Configuring firewalld"
install firewalld
sudo systemctl enable --now firewalld
}
setup_docker() {
announce "Setting up Docker"
install docker
install docker-compose
sudo systemctl enable --now docker.socket
sudo usermod -aG docker "$USER"
echo "User added to docker group, please restart your session"
}
announce() { announce() {
echo " " echo " "
echo "[dots] $1" echo "[dots] $1"
@ -199,5 +123,3 @@ confirm "Setup keyboard? " setup_keyboard
if pacman -Qi "gdm" &> /dev/null; then if pacman -Qi "gdm" &> /dev/null; then
confirm "Configure Gnome? " configure_gnome confirm "Configure Gnome? " configure_gnome
fi fi
confirm "Setup firewall? " setup_firewall
confirm "Setup Docker? " setup_docker