17 lines
263 B
Bash
Executable File
17 lines
263 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# This ensures that the entire script is downloaded before execution
|
|
{
|
|
|
|
sudo pacman -Syu
|
|
sudo pacman -S yay
|
|
|
|
yay -Syu
|
|
|
|
yay -S tmux zsh vim git\
|
|
terminator rofi feh xcompmgr\
|
|
i3lock-fancy i3blocks ffcast
|
|
|
|
sudo pip install ntfy
|
|
}
|