31 lines
469 B
Bash
Executable File
31 lines
469 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
. "std.sh"
|
|
program_begin dev
|
|
|
|
pacinstall wget
|
|
pacinstall unzip
|
|
pacinstall tree-sitter-cli
|
|
pacinstall nodejs
|
|
pacinstall npm
|
|
pacinstall fzf
|
|
pacinstall ripgrep
|
|
pacinstall fd
|
|
pacinstall lazygit
|
|
pacinstall github-cli
|
|
pacinstall zellij
|
|
|
|
pushd custom-packages/sdl3_image//
|
|
makepkg -si --noconfirm
|
|
popd
|
|
pushd custom-packages/sdl3_ttf/
|
|
makepkg -si --noconfirm
|
|
popd
|
|
pushd custom-packages/odin-git/
|
|
makepkg -si --noconfirm
|
|
popd
|
|
|
|
pacinstall ninja
|
|
|
|
program_end
|