15 lines
273 B
Bash
Executable File
15 lines
273 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
|
|
|
|
sudo pip install ntfy
|
|
}
|