Repository contains simple bash script to installing programs effortless after a Debian based installation. If you want to run the bash script, you can use below code.
All Packages List
- Curl
- Wget
- ZSH
- HTOP
- Snap
- Flatpak
- Google Chrome
- Chromium
- Spotify
- Opera
- Microsoft Edge
- Brave
- Zoom
- Discord
- Thunderbird
- GIT
- OpenJDK
- Oracle Java JDK
- Spring CLI
- Go
- VSCODE
- IntelliJ IDEA Ultimate
- GoLand
- Postman
- Docker
- Maven
- Gradle
- NPM
- Putty
- VIM
- DataGrip
- Gnome Tweak Tool
- Dropbox
- KeePassXC
- VirtualBox
- Gnome Boxes
- Terminator
- Web Apps
- OpenVPN
- Timeshift
- Gparted
- GIMP
- Droidcam
- Kdenlive
- Krita
- Inkscape
- TLP
- LibreOffice
└── debian-post-install/
├── .gitignore
├── LICENSE
├── Makefile
├── README.md
├── install-drivers.sh
├── install-fonts.sh
├── install-sudo.sh
└── main.sh
Root
File | Summary |
---|---|
main.sh | This script runs a script that install the programs you want. |
install-sudo.sh | This code installs sudo, checks if the user is root, adds the current user to sudoers file, and displays a success message. |
install-fonts.sh | This script installs a variety of fonts on a Linux system. It checks for root access, downloads the fonts, extracts them, and moves them to the appropriate font directory. Finally, it updates the font cache. |
install-drivers.sh | This code is a shell script that automates the installation and updating of drivers, provides root access control, and prompts for reboot. It also hides Bluetooth visibility. |
Dependencies
Please ensure you have the following dependencies installed on your system:
su
apt -y install curl
If you want to need installation the sudo, you can use the below code. Otherwise, skip this step.
su
bash -c "$(curl -fsSL https://raw.githubusercontent.com/ahmetcancicek/debian-post-install/main/install-sudo.sh)"
sudo bash -c "$(curl -fsSL https://raw.githubusercontent.com/ahmetcancicek/debian-post-install/main/main.sh)"
For Fonts
sudo bash -c "$(curl -fsSL https://raw.githubusercontent.com/ahmetcancicek/debian-post-install/main/install-fonts.sh)"
For Drivers
sudo bash -c "$(curl -fsSL https://raw.githubusercontent.com/ahmetcancicek/debian-post-install/main/install-drivers.sh)"
Distributed under the GNU License. See LICENSE.md for more information.