Framework LED Matrix, over amplication, Mac fnmode for Fedora, OBS CQ, Python config for Helix and yapf3
42 lines
323 B
Bash
Executable File
42 lines
323 B
Bash
Executable File
#!/bin/sh -e
|
|
if ! command -v git > /dev/null; then
|
|
echo "Error: git not found"
|
|
exit 1
|
|
fi
|
|
|
|
cd ssh
|
|
./ssh
|
|
cd ..
|
|
|
|
cd shells
|
|
./shells
|
|
cd ..
|
|
|
|
cd git
|
|
./git
|
|
cd ..
|
|
|
|
cd vim
|
|
./vim
|
|
cd ..
|
|
|
|
cd readline
|
|
./readline
|
|
cd ..
|
|
|
|
cd tmux
|
|
./tmux
|
|
cd ..
|
|
|
|
cd clang-format
|
|
./clang-format
|
|
cd ..
|
|
|
|
cd yapf
|
|
./yapf
|
|
cd ..
|
|
|
|
cd home-chmod
|
|
./home-chmod
|
|
cd ..
|