Open Task Manager

pid 1 · system monitor

See what your computer
is actually doing.

Your favorite Windows 11 Task Manager is now open source. It's a free process & performance monitor for Linux, Windows and macOS — the layout you already know, rebuilt with Tauri and Rust instead of Electron, plus a terminal version. No telemetry, no background service, one native binary. View the code on GitHub →

Star on GitHub Install Download

full interface

This is the actual app.

Not a mockup — the real build, running client-side with simulated data. Click through Processes, Performance, App history, Startup apps, Users, Details and Services.

open-task-manager.exe

features

Everything Task Manager should have shipped with.

Six things it does well, in the order you'd actually reach for them.

Grouped, searchable, sortable
Multi-instance apps collapse into one row — expand "Google Chrome (5)" to see every tab process. Filter by name, sort any column.
core
Right-click to end a task
A real context menu on every row and sub-row — no more hunting for the toolbar button.
core
Efficiency mode
Collapse row height when you just need to scan a long process list, not read it.
ui
Live CPU, memory, disk & network charts
A 60-second rolling history per metric, sampled straight from the OS every 1.5 seconds.
performance
One native window, three OSes
Built on Tauri: the UI is a system webview, not a bundled Chromium — no 150 MB install for a process list.
tauri
Rust reads the numbers
sysinfo polls the kernel directly for CPU, memory, disk and network — the frontend only renders what it's told.
rust

terminal ui · otm

The same task manager, in your terminal.

otm is the terminal version: the same seven tabs and the same Rust data as the desktop app, driven by keyboard or mouse. Handy over SSH, on servers, or anywhere you'd reach for htop.

~ $ otm
Tab1–7switch tab
/filter by name
sSsort, reverse
→←expand groups
xend task (asks first)
?all keys · qquit

install

Install it in a minute.

On Linux, every package installs both: the desktop app (Open Task Manager in your app menu) and otm for the terminal.

Ubuntu, Debian, Linux Mint, Pop!_OS (apt)

Add the signed repository once, then updates arrive with the rest of your system via sudo apt upgrade. Needs Ubuntu 22.04+ or Debian 12+, x86_64.

curl -fsSL https://sabaoongfx.github.io/Open-Task-Manager/KEY.gpg \
  | sudo gpg --dearmor -o /usr/share/keyrings/open-task-manager.gpg
echo "deb [signed-by=/usr/share/keyrings/open-task-manager.gpg] https://sabaoongfx.github.io/Open-Task-Manager stable main" \
  | sudo tee /etc/apt/sources.list.d/open-task-manager.list
sudo apt update && sudo apt install open-task-manager

download

Every download, one click.

Direct links to the latest release, free and open source. On Linux, prefer the apt or pacman repositories so you get updates automatically.

Installers for Windows and macOS aren't code-signed yet; see Install for how to open them. Older versions, checksums and release notes are on GitHub Releases.

specs

What's actually running under the hood.

Frontend
React 19 + TS
Shell
Tauri 2
System data
Rust · sysinfo
Poll interval
1.5s
Terminal UI
ratatui
Platforms
Linux · Win · macOS
Linux repos
apt · pacman
License
MIT

roadmap

What's still ahead.

All seven tabs are wired up and running — here's what's left to make it production-grade.

▾ Not started (4)
Real service control
Start/Stop is UI-only today
Real startup toggles
Enable/Disable is UI-only today
Persistent app history
Resets when the app restarts
Signed installers
Windows/macOS builds are unsigned