Files
dotfiles/scripts/install.sh
Pratik Tripathy b52a3f1863 feat(install): Make install ditro-agnostic
- Auto detect and use apt, dnf & yum
2024-09-11 15:49:00 +05:30

16 lines
680 B
Bash
Executable File

#!/usr/bin/env sh
# TODO:
# - Update `bootstrap-dotfiles.sh` to work from its parent directory & ignore "scripts" directory
# - Integrate with `bootstrap-dotfiles.sh` -> do dotfiles 1st, then install
# - README.md
# - Needs manual installation: appimagelauncher, firefox, brave, vs-code, cursor, kitty, mattermost-desktop, skypedesktop, ulauncher, dotnet8, dotnet8-sdk8.0, aspnetcore-runtime-8.0, Jetbrains Toolbox, Obsidian, Postman, firefox, zen, zoho, zoho-workdrive, nala
# - Available on some, not on others; may need manual installation: libreoffice, sublime-text, kitty-terminfo
main() {
./install-os-packages.sh
./install-brew-packages.sh
}
main "$@"