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 theSuper
key 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 usinggrep
for 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 withpacman
using 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 blockpacman
from 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 usingyay
with theys
shortcut. -
alias pas="paru -S"
🛠️📦:
Install packages from the AUR usingparu
with thepas
shortcut. -
alias wget="wget -c"
🌐⬇️:
Resume interrupted downloads with the-c
option 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 thehome
alias. -
alias docs="cd ~/Documents"
📂📝:
Navigate to yourDocuments
folder with thedocs
alias. -
alias dl="cd ~/Downloads"
📥🗂️:
Go to theDownloads
folder using thedl
alias. -
alias music="cd ~/Music"
🎵🎶:
Navigate to yourMusic
folder with themusic
alias. -
alias pics="cd ~/Pictures"
🖼️📸:
Quickly jump to thePictures
folder using thepics
alias. -
alias vids="cd ~/Videos"
🎬📹:
Go to theVideos
folder with thevids
alias. -
alias desk="cd ~/Desktop"
🖥️💻:
Jump to theDesktop
folder using thedesk
alias.
These aliases with emojis make it easy to remember their functions and provide a fun, visual way to enhance your terminal experience!