Introduction to Terminal
Launch Terminal
Here’s a list of common shortcuts to launch the terminal in various desktop environments and window managers on Snigdha OS, along with relevant emojis:
🌐 Desktop Environments & Window Managers
-
KDE Plasma
- Shortcut:
Ctrl + Alt + T
- Shortcut:
-
GNOME
- Shortcut:
Super (Windows key) + T
- Shortcut:
-
XFCE
- Shortcut:
Ctrl + Alt + T
- Shortcut:
-
LXQt
- Shortcut:
Ctrl + Alt + T
- Shortcut:
-
Cinnamon
- Shortcut:
Ctrl + Alt + T
- Shortcut:
-
MATE
- Shortcut:
Ctrl + Alt + T
- Shortcut:
-
i3wm (Tiling Window Manager)
- Shortcut:
Mod + Enter(where "Mod" is usually theSuperkey orAlt)
- Shortcut:
-
Sway (Wayland-based i3-like WM)
- Shortcut:
Mod + Enter
- Shortcut:
-
Openbox
- Shortcut:
Super + Enter(or configure manually)
- Shortcut:
-
AwesomeWM
- Shortcut:
Mod + Return
- Shortcut:
-
Fluxbox
- Shortcut:
Super + Return
- Shortcut:
-
Budgie
- Shortcut:
Super + T
- Shortcut:
-
LXDE
- Shortcut:
Ctrl + Alt + T
- Shortcut:
-
Herbstluftwm
- Shortcut:
Mod + Return
- Shortcut:
Shortcodes(Regular)
Here’s the explanation of your aliases with relevant emojis:
System and Package Management
-
alias ls='ls -l --color=auto'🖥️🌈:
List files in long format (-l) and colorize the output for better readability (--color=auto). -
alias grep='grep --color=auto'🔍🌈:
Highlight matching text in color when usinggrepfor easier identification of search results. -
alias rs="sudo pacman -Rs"🚫📦:
Remove a package and its dependencies (pacman -Rs) withsudo. -
alias s="sudo pacman -S"📦✨:
Install a package withpacmanusing the shortcuts, which runssudo pacman -S. -
alias sy="sudo pacman -Syy"🔄📦:
Force sync the package databases (-Syy) to fetch the latest information from mirrors. -
alias syyu="sudo pacman -Syyu"⬆️📦💻:
Perform a system update by forcing a database refresh (-Syy) and upgrading all packages (-u). -
alias lck="sudo rm /var/lib/pacman/db.lck"🔒🗑️:
Remove the lock file (db.lck) that may blockpacmanfrom functioning properly. -
alias vm="sudo systemctl enable --now vmtoolsd.service"🖥️⚙️:
Enable and start the VMware Tools service (vmtoolsd.service) in a virtual machine. -
alias rip="expac --timefmt='%Y-%m-%d %T' '%l\t%n %v' | sort | tail -200 | nl"🕒📋:
List the most recent 200 installed packages, sorted by date, with numbered entries. -
alias ys="yay -S"🚀📦:
Install packages from the AUR usingyaywith theysshortcut. -
alias pas="paru -S"🛠️📦:
Install packages from the AUR usingparuwith thepasshortcut. -
alias wget="wget -c"🌐⬇️:
Resume interrupted downloads with the-coption forwget.
Navigation
-
alias ..="cd .."🔼📁:
Move up one directory level using the shortcut..instead of typingcd ... -
alias home="cd ~"🏠💻:
Quickly go to your home directory with thehomealias. -
alias docs="cd ~/Documents"📂📝:
Navigate to yourDocumentsfolder with thedocsalias. -
alias dl="cd ~/Downloads"📥🗂️:
Go to theDownloadsfolder using thedlalias. -
alias music="cd ~/Music"🎵🎶:
Navigate to yourMusicfolder with themusicalias. -
alias pics="cd ~/Pictures"🖼️📸:
Quickly jump to thePicturesfolder using thepicsalias. -
alias vids="cd ~/Videos"🎬📹:
Go to theVideosfolder with thevidsalias. -
alias desk="cd ~/Desktop"🖥️💻:
Jump to theDesktopfolder using thedeskalias.
These aliases with emojis make it easy to remember their functions and provide a fun, visual way to enhance your terminal experience!