DEV Community

Cover image for Omerchy OS for Beginners – The Complete Guide
Mehedi Hasan
Mehedi Hasan

Posted on

Omerchy OS for Beginners – The Complete Guide

Welcome to Omerchy OS, an Arch Linux–based, lightweight, and keyboard-centric distro!

This guide is designed for beginners to get started efficiently and master daily tasks using hotkeys, terminal commands, and workflow tips.


1️⃣ What is Omerchy OS?

  • Base: Arch Linux
  • Type: Rolling release (always updated, lightweight, fast)
  • Package Manager: pacman
  • Interface: Terminal + GUI (XFCE, KDE, GNOME)
  • Goal: Maximize productivity using hotkeys + terminal

2️⃣ First Steps After Installation

🔄 Update System

Always update your system immediately:

sudo pacman -Syu
Enter fullscreen mode Exit fullscreen mode

🛠️ Install Essential Tools

sudo pacman -S git wget curl tree htop vim neovim
Enter fullscreen mode Exit fullscreen mode
  • git → Version control
  • tree → View folder structure
  • htop → Monitor processes
  • vim/neovim → Code editor

3️⃣ Pacman – Package Manager
Task Command

Install package sudo pacman -S package_name

Remove package  sudo pacman -R package_name

Search package  pacman -Ss package_name

List installed packages pacman -Q

Update system   sudo pacman -Syu
Enter fullscreen mode Exit fullscreen mode

💡 Tip: Arch-based distros are rolling release. Always update regularly!

4️⃣ Basic Terminal Usage
📂 Navigation

pwd          # Show current directory

ls -l        # List files in detail

cd folder    # Change directory

mkdir new    # Create folder

rm -r folder # Remove folder
Enter fullscreen mode Exit fullscreen mode

📝 File Operations

cp file1 file2   # Copy file

mv old new       # Move/rename file

cat file         # View file content
Enter fullscreen mode Exit fullscreen mode

💻 System Monitoring

top         # Running processes

htop        # Interactive process monitor

free -h     # RAM usage

df -h       # Disk usage

uname -a    # System info
Enter fullscreen mode Exit fullscreen mode

5️⃣ Hotkeys & Navigation

Super key = Windows key

🖥️ Workspace & Window Management
Shortcut Action

Super + 1/2/3/4 Jump to workspace

Shift + Super + 1/2/3/4 Move window to workspace

Super + Arrow Focus window in that direction

Super + W Close window

🚀 Launching Apps
Shortcut App

Super + Return Terminal

Super + B Browser

Super + N Neovim

Super + F File Manager

📸 Screenshot / Screen Recording
Shortcut Action

Print Screen Screenshot region

Alt + Print Screen Record region

Ctrl + Print Screen Screenshot monitor

💡 Tip: Super + Alt + Space opens Omarchy menu for apps, captures, and style.

6️⃣ File Manager Tips

Ctrl + L → Go to path

Space → Preview file

Backspace → Go back one folder

7️⃣ Neovim (LazyVim) Shortcuts

Space → Show commands

Space Space → Fuzzy file search

Space E → Toggle sidebar

Sidebar operations:

Shortcut Action

A Add file

Shift + A Add folder

D Delete

M Move

R Rename

8️⃣ Networking & Downloads

ping google.com      # Check internet

wget url             # Download file

curl -O url          # Download file

ip addr              # Check IP
Enter fullscreen mode Exit fullscreen mode

9️⃣ Daily Workflow Recommendations

Always update system first:

sudo pacman -Syu
Enter fullscreen mode Exit fullscreen mode

Use hotkeys for workspace & window management

Use terminal for installing/updating software

Keep essential tools installed (git, htop, tree, neovim)

Explore apps via Omarchy menu (Super + Alt + Space)

Customize hotkeys & theme via ~/.config/hypr/bindings.conf

🔹 Tips for Proper Usage

Combine hotkeys + terminal → maximum efficiency

Rolling release → update regularly

Keep a hotkeys cheat sheet on your desktop

Backup dotfiles (~/.config)

Use Neovim + Terminal for coding & scripting

Explore Omarchy Menu for apps, style, and captures

🎯 Summary

Omerchy OS is a fast, rolling-release, keyboard-centric Linux distro.
Learn essential commands, hotkeys, and package management, and you’ll navigate your system like a pro in no time!

If you found this guide helpful, share it or leave a comment. Happy computing! 🚀

Top comments (0)