5 Linux commands that replaced my desktop apps

For most people, the Linux terminal is where you troubleshoot issues or run sudo commands—not a place where you do your day-to-day work. I used to think the same way until I stumbled into the world of TUI (Terminal User Interface) apps—terminal-based tools with real interfaces. I tried a few, and while most didn’t stick, these five did. In fact, they’re so good they’ve replaced several graphical desktop apps I used before.

Yazi

The file manager that makes keyboard navigation feel natural

Yazi is a terminal-based file manager built around the Miller columns layout. Instead of showing a single directory at a time, it displays three columns simultaneously—the parent directory on the left, your current directory in the middle, and a preview of the selected item on the right. This ensures that as you navigate, you always have context for where you came from and what you’re looking at.

It’s written in Rust with async I/O, which translates to blazing-fast navigation even in directories with thousands of files. File previews also render quickly—including images, provided your terminal supports it.

To launch it, simply type yazi in the terminal, and it will open in your current working directory. You can move through directories using the arrow keys or Vim-style h-j-k-l, press Space to select files, y to copy, p to paste, and d to delete. There’s also ripgrep-powered search built in if you need to find something quickly. You can find all the default keybindings on its official GitHub page.

The main thing you give up is mouse-based drag-and-drop. If your workflow depends on moving files between graphical apps visually, Yazi won’t help you there. But if you’re already comfortable navigating with a keyboard, that trade-off doesn’t matter much.

I started using Yazi as a deliberate experiment. I wanted to get more comfortable in the terminal, but I also hated tab-completing cd and ls just to figure out where to go. Yazi solved that, and it stuck—I haven’t opened a graphical file manager since.

Tux, the Linux mascot, wearing sunglasses and working on a laptop surrounded by floating terminal windows and 3D command symbols.-1

5 popular Linux terminal-based file managers—ranked

Five tools that do the same thing but with completely different workflows.

btop

A system monitor that shows you more while costing you less

btop, a.k.a., btop++, is a terminal-based system resource monitor. It shows CPU usage per core, RAM, disk read/write speeds, network activity, and a full process list—all on one screen, with real-time graphs. If you’ve used htop, think of btop as its inevitable evolution—written in C++, faster, and far more informative at a glance.

Using btop is straightforward. Launch it with the btop command, navigate the process list with the arrow keys or h-j-k-l, press F to filter by process name, Enter to expand a process, and K to kill it. The number keys (1–4) toggle individual panels if you want to focus on a specific metric.

What pushed me to make it my default came down to two things.

First, system monitors that ship with most desktop environments tend to look dated and offer limited detail—you get CPU, RAM, and maybe a basic process list. btop gives you a much more complete view.

However, more importantly, there’s something ironic about using a graphical app to monitor system resources, since that app itself contributes to resource consumption. By comparison, btop’s footprint is negligible, making it a far more practical resource monitor.

Linux mascot wearing sunglasses and using a laptop, surrounded by floating windows with the i3 Window Manager logo in the background.

Here’s why btop++ became my favorite Linux terminal resource monitor

It’s modern, intuitive, and leagues ahead of the competition.

Calcurse

Not the calendar I expected to like, but probably the best one I’ve used

Calcurse is a terminal-based calendar app with a three-panel layout: a full-length appointments list on the left, and on the right, a monthly calendar at the top with a to-do list below. You can manage both appointments and tasks directly from within the app. All data is stored in ~/.local/share/calcurse/ as plain-text files with a special, albeit intuitive, syntax.

To launch it, type calcurse in your terminal. Press Tab to move between panels. Once you’re in the panel you want, press a to add a new item—for appointments, select a date from the calendar, then tab over to set the time, duration, and description. Press r to make an event recurring, and d to delete it. If you ever get lost, press ? to open the built-in help.

A calendar app is crucial to my workflow, but I’ve never liked the default options that ship with most distros. I find GNOME Calendar too minimal, while KOrganizer is too busy and overcomplicated. Calcurse, despite being a terminal app, offers the best interface I’ve used. It also loads instantly, and once you learn the shortcuts, adding new events becomes genuinely fast.

The main caveat is sync. There’s experimental CalDAV support if you want to connect Calcurse to something like Nextcloud Calendar, but it requires manual setup and isn’t plug-and-play. Personally, I don’t need my desktop calendar synced with Google Calendar—I use it only for events that are relevant while I’m at my workstation. That separation helps keep work and personal life from bleeding into each other.

Because everything is stored as plain text, it’s easy to automate and manipulate. I’ve given Claude Code access to the Calcurse data files directly, so it can read my existing events or create new ones based on natural language commands. You could do the same with any AI tool that has file system access.

Taskwarrior

The task manager that gets out of your way and lets you add things quickly

Taskwarrior is a command-line task management system. Tasks are stored locally as JSON files, and you interact with everything through short commands. It supports priorities, due dates, tags, and projects. Here’s how it works:

  • Type task add Buy groceries to create a task
  • Type task to see your list sorted by urgency
  • Type task 2 done to mark a task complete
  • Type task 2 delete to remove it
  • Add a priority with priority:H
  • Set a due date with due:eom (end of month) or due:monday
  • Group tasks under a project with project:Writing

Taskwarrior automatically calculates an urgency score for each task based on these factors and sorts your list accordingly, so high-priority, overdue tasks float to the top without you having to think about it.

What I love about Taskwarrior is how quickly it lets me capture new tasks. All I need to do is press Ctrl+Alt+T to open the terminal, type task add {task_item}, and I’m done. It’s much faster than opening a graphical app, finding the right list, clicking Add, and typing the task. That added friction with graphical apps was often enough to stop me from creating a task—and then forgetting it moments later. With Taskwarrior, that’s no longer an issue.

Taskwarrior offers a lot of powerful options, but if you dive in too quickly, it can feel overwhelming. Start with add, done, delete, and task next, then expand from there as needed.

Illustration of a laptop with Linux apps and some penguins looking at the screen.

4 productivity apps on Linux that replaced my favorite web apps

They’re all local, more secure and private, and completely free.

Wordgrinder

This is a word processor for your terminal

Wordgrinder is a word processor that runs entirely in the terminal. It supports basic paragraph styles like headings and body text, character styles like bold and italic, word count, a spellchecker, and export to HTML, Markdown, and ODT.

You launch it with wordgrinder, which drops you straight into the word processor. From here you can press ESC to open a menu with everything you need, so you don’t have to memorize shortcuts upfront. Ctrl+S saves, Ctrl+B and Ctrl+I handle bold and italic, and paragraph styles are just a few keystrokes away through the Style menu. Wordgrinder saves your work in its own .wg format, which works more like a container than a single document—you can store multiple documents inside one file, which is useful for keeping related writings together.

I’ve only been using Wordgrinder for about a week at the time of writing, so I can’t speak to long-term reliability. I tried it out of curiosity, but I’ve grown to like it a lot—especially how quickly it drops me straight into the editor compared to something like LibreOffice, which can take a few seconds to launch.

That said, I wouldn’t call it a replacement for LibreOffice—especially if you need complex formatting, tables, or files you plan to share in standard formats. But for writing or editing simple documents that stay on your machine, it’s hard to beat something this fast and minimal.

a folder with some microsoft office apps and icons.

4 Open-Source Writing Apps That Can Replace Microsoft Word

There are other options out there that are just as good as Word.


Terminal apps have a charm of their own

TUI apps aren’t for everyone, and they don’t have to be. In fact, I didn’t set out to rebuild my workflow around the terminal—it just happened. But now that I have, I’d recommend you give these five a try, especially if you like the minimal aesthetic. Who knows—you might find a few of them sticking around longer than expected.

Kubuntu Focus M2 Gen 6 laptop.

8/10

Operating System

Kubuntu 24.04 LTS

CPU

Intel Core Ultra 9 275HX (2.7GHz up to 5.4GHz)

This laptop is purpose-built for developers and professionals who want a Kubuntu Linux-powered portable workstation and gaming platform. It features an Intel processor capable of hitting 5.4GHz and both integrated graphics and a dedicated NVIDIA 5070 Ti GPU for when you need extra power for machine learning or games.


Source link

Visited 1 times, 1 visit(s) today

Related Article

Phone bans in schools: why Swiss teachers are sceptical

In many schools, pupils’ smartphones have to spend the day in boxes like these. Keystone / Christian Beutler A growing number of Swiss cantons are banning smartphones from schools amid concerns about their impact on concentration and social interaction. Yet the people who stand in classrooms every day are not convinced that blanket bans are

5 pointless phone features no one actually uses

Modern smartphones are often packed with unwanted AI and other overrated features you don’t need, inflating their prices. Evolution seems to have stagnated, and smartphone makers, like Samsung, Apple, and Google, provide iterative updates with gimmicky features as selling points rather than committing to real innovation. These overrated phone features often have limited practical use,

ULTRALOQ Achieves Aliro Certification, Enabling Tap-to-Unlock Digital Keys Across Mobile Wallets

Aliro-certified smart locks from ULTRALOQ streamline credential management for homeowners, property managers, and commercial operators alike FREMONT, Calif., May 4, 2026 /PRNewswire/ — ULTRALOQ, a best-selling smart lock brand under Xthings, a global leader in AIoT solutions, today announced that several of its smart lock models have achieved certification for Aliro, a new open industry standard

Electric Vehicle Power Inverter Market Set to Boom Rapidly,

Electric Vehicle Power Inverter Market Coherent Market Insights has released a report titled “Electric Vehicle Power Inverter Market: Industry Trends, Share, Size, Growth, Opportunity, and Forecast, 2026-2033”, which includes market percentage records and a thorough enterprise-level analysis. This report examines competitive dynamics, regional performance, and long-term growth potential across the global market. This comprehensive study

Google finally explains why the AICore app is eating up your storage

What you need to know AICore can temporarily use large storage when updating AI models in the background on your device. Google keeps both old and new AI models for up to three days as a fail-safe during updates. Storage used by AICore is automatically freed once the new AI model is confirmed stable. If

TORRAS is bringing the spirit of football culture to your phone case

2026 is shaping up to be a landmark year for football. With the World Cup kicking off in June, momentum is already building. The sport dominates social media, watching a big game has become a cultural ritual, and football’s influence has spread well beyond the pitch into fashion and lifestyle. People are excited, and the

Your work apps are quietly handing 19 data points to someone

Office work in 2026 runs through a stack of mobile apps that sit on the same phones people use for banking, messaging family, and tracking their location. Ten of the most common workplace apps in use across U.S. companies, including Gmail, Microsoft Teams, Zoom Workplace, Slack, and Notion, account for more than 12.5 billion downloads

Hankook Tire tightens grip on British EV market by sponsoring premier exhibition

Hankook Tire & Technology’s booth at Everything Electric UK 2026 / Courtesy of Hankook Tire & Technology Hankook Tire & Technology said Monday that it has secured the headline sponsorship for the United Kingdom’s premier electric-vehicle exhibition, Everything Electric UK 2026. The deal represents a significant broadening of the company’s sponsorship footprint as it promotes

Gemini app getting full redesign that overhauls every part of the UI

Google has been working on a Gemini app redesign for the past few months, and we now have our first look at the full overhaul. The homepage sees Gemini switch to a pill-shaped prompt box. Voice input and Gemini Live are at the right, but there’s otherwise just a ‘plus’ button. This opens a bottom

Developers of ‘Screwber’ app get 2 years for helping NYC Uber drivers scam customers

A shady software developer who wanted the “satanic” Uber to go bankrupt will spend two years behind bars, as will his partner in crime, after helping the rideshare app’s drivers charge customers millions in bogus surge pricing fees. Eliahou Paldiel, 53, of Queens, and accomplice Carlos Arturo Suarez Palacios, 55, of Brick Township, N.J., were

I’ve been capping refresh rate on certain apps on my Galaxy, here’s how

Once you start using a smartphone with a high refresh rate display, it’s hard to go back. After getting used to the smooth animations and UI transitions, the standard 60Hz refresh rate starts feeling really laggy. In fact, it’s pretty much impossible to go back to a 60Hz display today even if you tried. Everything

0
Would love your thoughts, please comment.x
()
x