Awesome
<div align="center"> <h1>Linux - Linux World</h1> </div>- Where there is a shell, there is a way
Terminal
🤩 Terminals Are Sexy
Terminator
Linux Bash Terminal Keyboard Shortcuts
Aliases
Gogh ~ Color Scheme for your Terminal
Powerlevel10k
Powerlevel10k is a theme for Zsh. It emphasizes speed, flexibility and out-of-the-box experience.
BASHTOP Linux/OSX/FreeBSD resource monitor
Resource monitor that shows usage and stats for processor, memory, disks, network and processes.
BTOP
Resource monitor that shows usage and stats for processor, memory, disks, network and processes. <br> C++ version and continuation of bashtop and bpytop.
Terminal Games:
GameShell a game to learn (or teach) how to use standard commands in a Unix shell
Teaching first-year university students or high schoolers to use a Unix shell is not always the easiest or most entertaining of tasks. <br> GameShell was devised as a tool to help students at the Université Savoie Mont Blanc to engage with a real shell, in a way that encourages learning while also having fun.
NoPayStation
NoPayStation - No Ads. No Waiting. No Bullshit.
- Shell files
~/.bash_profile # if it exists, read once when you log in to the shell
~/.bash_login # if it exists, read once if .bash_profile doesn't exist
~/.profile # if it exists, read once if the two above don't exist
/etc/profile # only read if none of the above exist
~/.bashrc # if it exists, read every time you start a new shell
~/.bash_logout # if it exists, read when the login shell exits
~/.zlogin #zsh shell
~/.zshrc #zsh shell
- System Information - OS info
(cat /proc/version || uname -a ) 2>/dev/null
lsb_release -a 2>/dev/null # old, not by default on many systems
cat /etc/os-release 2>/dev/null # universal on modern systems