123456789101112131415161718192021 |
- #bin/bash
- if [[ $EUID -ne 0 ]]; then
- echo "This script must be run as root"
- exit 1
- fi
- export PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"
- cp doas.conf /etc/
- cp main.con /etc/iwd
- cp ../configs/profile /etc/
- apt update
- apt install foot lynx nnn htop tofi doas iwd git sway imv ffmpeg mpv
- cp ../configs/imv_config /etc/
- print "replace username with the name of your user"
- nano /etc/doas.conf
|