24 lines
334 B
Bash
Executable File
24 lines
334 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
# install programs
|
|
|
|
./programs/git.sh
|
|
./programs/dev.sh
|
|
./programs/neovim.sh
|
|
./programs/yay.sh
|
|
./programs/fonts.sh
|
|
./programs/hyprland.sh
|
|
./programs/tmux.sh
|
|
./programs/zellij.sh
|
|
./programs/zsh.sh
|
|
./programs/man.sh
|
|
./programs/zen.sh
|
|
./programs/ssh.sh
|
|
|
|
# copy scripts
|
|
|
|
mkdir -p ~/bin
|
|
cp -rv scripts/* ~/bin
|