Intelligence is simply talking to many people

Install Kali Bash Script (in progress)

# BEFORE YOU RUN THE SCRIPT, you need to make it executable. Open a Terminal in the same folder as this file, and do:
# chmod +x setup_script.sh
Now you can run the script using the following command:
# ./setup_script.sh
# OTHER STUFF TO KNOW
# the backslash (\) at the end of each line indicates that the command continues on the next line. This makes the script more readable and avoids syntax errors.

#!/bin/bash

# Update package repositories
sudo apt update

# Install packages
sudo apt install -y \
    hydrogen gimp kdenlive gnome-disk-utility shotwell vokoscreen \
    libreoffice inkscape secure-delete imagemagick \
    fonts-indic fonts-thai-tlwg \
    xinput cherrytree gdebi gdebi-core gnome-system-monitor \
    system-config-printer cups font-manager virtualbox-dkms \
    gnome-control-center \
    plasma-workspace \
# Gnome-control-center is for auto-setting the languages with Spanish
# Plasma-workspace is for adding launchers to the panel

# More packages (Thai, Hindi fonts, Brave browser)
sudo apt-get install -y fonts-thai-tlwg fonts-indic \
sudo apt install -y apt-transport-https curl
    sudo curl -fsSLo /usr/share/keyrings/brave-browser-archive-keyring.gpg https://brave-browser-apt-release.s3.brave.com/brave-browser-archive-keyring.gpg
    echo "deb [signed-by=/usr/share/keyrings/brave-browser-archive-keyring.gpg arch=amd64] https://brave-browser-apt-release.s3.brave.com/ stable main"|sudo tee /etc/apt/sources.list.d/brave-browser-release.list
    sudo apt update
    sudo apt install brave-browser


# Do some other things
sudo systemctl enable cups \
sudo timedatectl set-timezone America/Managua \
pactl set-sink-mute 0 false \
pactl set-sink-volume 0 50% \
sudo dpkg --add-architecture i386 \
# i386 is for installing Bitwig
#Change power options. Set “Security” > “Automatically lock the session:” to “Never”, and then uncheck “Lock screen when system is going to sleep”, and change the sub-options in “Display power management” all to “60 minutes”, and change “Brightness reduction” > “Reduce after” to “Never”
# keep luks decrypt screen on boot, but don't do log in screen. Just automatically log in. 
# go to keyboard settings, to Layout, and unlock the default settings, add Spanish, and then change layout option, and set ctrl-shift to change language input
# Add launchers to the panel for VirtualBox, Vokoscreen, and Screenshot, remove launcher for mousepad and firefox
# Open another Terminal and print OS, version, ram, processor, diskspace, desktop environment, IP, and say write these down and put them on a sticky note
sudo apt-get update \
gnome-system-monitor \

# Create directory for custom fonts
mkdir -p ~/.local/share/fonts

# Configure other system settings

kwriteconfig5 --file plasma-org.kde.plasma.desktop-appletsrc --group Containments --group panel --group Applets --key cherrytree value "cherrytree.desktop"

# You still need to
# Manually use Gdebi and open bitwig's deb and install it
# Inside VMs, reinstall Firefox as shown in the SettingUpKali guide
# Plug in your printer, open Print Settings, and Add your printer (even if it already displays, add it again if it doesn't print)

Comments: 0

Interested to discuss? Leave a comment.

Image




Your email will not be published nor shared with anyone. In your text you can use markdown for marking up *italic*, links <http://example.org> and other elements. These comments are moderated and published manually as soon as possible.