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.
14 lines
252 B
Bash
Executable File
14 lines
252 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# This ensures that the entire script is downloaded before execution
|
|
{
|
|
|
|
sudo apt update
|
|
sudo apt upgrade
|
|
|
|
sudo apt install tmux zsh vim git\
|
|
terminator rofi feh xcompmgr\
|
|
i3lock-fancy i3blocks
|
|
|
|
}
|