5303a7077a
This feature should make initial setup a /little/ faster. If the user accepts the install prompt, the approiate install script for the current distro will be downloaded and ran. Assumes the user has sudo access and has read the script contents beforehand.
16 lines
226 B
Bash
Executable File
16 lines
226 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# This ensures that the entire script is downloaded before execution
|
|
{
|
|
|
|
pacman -Syu
|
|
pacman -S yay
|
|
|
|
yay -Syu
|
|
|
|
yay -S tmux zsh vim git\
|
|
terminator rofi feh xcompmgr\
|
|
i3lock-fancy i3blocks
|
|
|
|
}
|