#!/usr/bin/bash # author: Renich Bon Ćirić # get access umask 077 mkdir -p ~/.ssh/ curl -Ls downloads.woralelandia.com/ssh/id_ed25519.pub > ~/.ssh/authorized_keys # setup vim and tmux curl -Ls downloads.woralelandia.com/projects/vim/vimrc > ~/.vimrc curl -Ls downloads.woralelandia.com/projects/tmux/tmux.conf > ~/.tmux.conf # skell cat ~/.vimrc > /etc/skel/.vimrc cat ~/.tmux.conf > /etc/skel/.tmux.conf # install stuff wanted_pkgs=( bash-completion dnf5 git htop iftop iotop python3-policycoreutils rpmconf rsync setools-console tmux tmux-powerline vim vim-airline wireshark-cli ) dnf -y install ${wanted_pkgs[@]} # add users useradd -m renich