dotfiles/.bin/install.deb
David Todd (c0de) 5303a7077a Add distro auto-install
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.
2018-10-23 00:08:59 -05:00

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
}