https://github.com/trueredfence/kali-linux-terminal
Customize your linux Terminal to Kali Linux Terminal Theme
https://github.com/trueredfence/kali-linux-terminal
kalilinux terminal zsh zshell
Last synced: 4 months ago
JSON representation
Customize your linux Terminal to Kali Linux Terminal Theme
- Host: GitHub
- URL: https://github.com/trueredfence/kali-linux-terminal
- Owner: trueredfence
- License: mit
- Created: 2024-01-13T06:38:15.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2026-01-12T08:49:45.000Z (6 months ago)
- Last Synced: 2026-01-12T18:30:56.935Z (6 months ago)
- Topics: kalilinux, terminal, zsh, zshell
- Language: Shell
- Homepage: https://www.youtube.com/@true_redfence
- Size: 116 KB
- Stars: 5
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# Kali Linux Terminal Theme

### Single Line Command to get job done
```bash
sudo bash -c "$(curl -H 'Cache-Control: no-cache, no-store' https://raw.githubusercontent.com/trueredfence/kali-linux-terminal/refs/heads/main/install.sh)"
```
## Install zsh shell in your linux machine
### Donwload on machine
```bash
wget https://github.com/trueredfence//kali-linux-terminal/archive/refs/heads/main.zip -O /tmp/kalilinuxterminal.zip
unzip kalilinuxterminal.zip
```
### fedora
You can choose command as per your linux distro i am using fedora so i am using dnf if you are using ubuntu then you have to apt
#### 1. Install z shell first
```bash
sudo dnf install zsh -y
```
### OR
```bash
sudo yum install zsh -y
```
#### 2. Copy zsh-autosuggestions and zsh-syntax-highlighting into /usr/share folder of your machine
```bash
cd /tmp/kali-linux-terminal-main
sudo cp -Rf zsh-* /usr/share
```
#### 3. copy paste .zshrc file in your ~/ [your /home/] folder if already exists replace with this file
```bash
sudo cp -Rf .zshrc ~/
```
#### 4. chagne permisson of zsh-syantax and zsh-autosuggestion to
```bash
sudo chmod 755 /usr/share/zsh-*
```
#### 6. change default shell to zsh
```
command -v zsh ## find path to ksh ##
chsh -s /usr/bin/zsh ## change bash to zsh ##
grep "^${USER}" /etc/passwd ## Verify if changed ##
```
#### 5. logout and re loggin again to view changes.