├── .github └── workflows │ └── release.yml ├── Dockerfile ├── README.md ├── common-library-scripts └── common-debian.sh └── library-scripts ├── broot-debian.sh ├── gh-debian.sh ├── go-debian.sh ├── helix-debian.sh ├── nvim-debian.sh ├── php-debian.sh ├── pyenv-system-wide.sh ├── rbenv-system-wide.sh ├── rust-analyzer-debian.sh ├── rust-debian.sh ├── swift5-debian.sh └── tailscale-debian.sh /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blinksh/build-hacker-tools/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blinksh/build-hacker-tools/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blinksh/build-hacker-tools/HEAD/README.md -------------------------------------------------------------------------------- /common-library-scripts/common-debian.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blinksh/build-hacker-tools/HEAD/common-library-scripts/common-debian.sh -------------------------------------------------------------------------------- /library-scripts/broot-debian.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blinksh/build-hacker-tools/HEAD/library-scripts/broot-debian.sh -------------------------------------------------------------------------------- /library-scripts/gh-debian.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blinksh/build-hacker-tools/HEAD/library-scripts/gh-debian.sh -------------------------------------------------------------------------------- /library-scripts/go-debian.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blinksh/build-hacker-tools/HEAD/library-scripts/go-debian.sh -------------------------------------------------------------------------------- /library-scripts/helix-debian.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blinksh/build-hacker-tools/HEAD/library-scripts/helix-debian.sh -------------------------------------------------------------------------------- /library-scripts/nvim-debian.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blinksh/build-hacker-tools/HEAD/library-scripts/nvim-debian.sh -------------------------------------------------------------------------------- /library-scripts/php-debian.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blinksh/build-hacker-tools/HEAD/library-scripts/php-debian.sh -------------------------------------------------------------------------------- /library-scripts/pyenv-system-wide.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blinksh/build-hacker-tools/HEAD/library-scripts/pyenv-system-wide.sh -------------------------------------------------------------------------------- /library-scripts/rbenv-system-wide.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blinksh/build-hacker-tools/HEAD/library-scripts/rbenv-system-wide.sh -------------------------------------------------------------------------------- /library-scripts/rust-analyzer-debian.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blinksh/build-hacker-tools/HEAD/library-scripts/rust-analyzer-debian.sh -------------------------------------------------------------------------------- /library-scripts/rust-debian.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blinksh/build-hacker-tools/HEAD/library-scripts/rust-debian.sh -------------------------------------------------------------------------------- /library-scripts/swift5-debian.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blinksh/build-hacker-tools/HEAD/library-scripts/swift5-debian.sh -------------------------------------------------------------------------------- /library-scripts/tailscale-debian.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blinksh/build-hacker-tools/HEAD/library-scripts/tailscale-debian.sh --------------------------------------------------------------------------------