<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Kayode Williams Olalere</title>
    <description>The latest articles on DEV Community by Kayode Williams Olalere (@xr19).</description>
    <link>https://dev.to/xr19</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3824204%2Fe3fcd985-83df-4000-8b68-82e92df8d16b.png</url>
      <title>DEV Community: Kayode Williams Olalere</title>
      <link>https://dev.to/xr19</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/xr19"/>
    <language>en</language>
    <item>
      <title>I Built a Terminal Workspace in Rust - Here's How It Started</title>
      <dc:creator>Kayode Williams Olalere</dc:creator>
      <pubDate>Sat, 14 Mar 2026 16:08:57 +0000</pubDate>
      <link>https://dev.to/xr19/i-built-a-terminal-workspace-in-rust-heres-how-it-started-106f</link>
      <guid>https://dev.to/xr19/i-built-a-terminal-workspace-in-rust-heres-how-it-started-106f</guid>
      <description>&lt;p&gt;It didn't start as a terminal.&lt;/p&gt;

&lt;p&gt;I wanted a live log viewer, something that could tail and filter structured JSON logs in real time without making me jump between windows. The kind of thing where you run &lt;code&gt;kubectl logs mypod -f&lt;/code&gt; and actually &lt;em&gt;see&lt;/em&gt; what's happening, filtered by level, searchable, right there.&lt;/p&gt;

&lt;p&gt;I couldn't find exactly what I wanted, so I built it.&lt;/p&gt;

&lt;p&gt;Then I thought, why not make it a proper terminal and just add the log viewer as a sidebar? That's the idea that turned into &lt;strong&gt;Magma&lt;/strong&gt;.&lt;/p&gt;

&lt;h2&gt;
  
  
  What It Is
&lt;/h2&gt;

&lt;p&gt;Magma is a GTK4 desktop terminal workspace written in Rust. It ships three things in one window:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;A full terminal&lt;/strong&gt; - tabs, split panes, pane-local multiplexer sessions, tab rename/reorder, clipboard integration, command history, and desktop notifications&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;logr&lt;/strong&gt; - a live JSON log viewer sidebar with level filtering, full-text search, export, and graceful handling of malformed lines&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;An embedded web pane&lt;/strong&gt; - a browser alongside your terminal for quick lookups without switching apps&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  The Workflow That Drove It
&lt;/h2&gt;

&lt;p&gt;The use case I kept coming back to was this:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;kubectl logs mypod &lt;span class="nt"&gt;-f&lt;/span&gt; | magma
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Pipe any log stream straight in. Filter by error level. Search for a specific field. Export what you need. All while your terminal is right next to it.&lt;/p&gt;

&lt;p&gt;You can also launch with filters pre-applied:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;magma &lt;span class="nt"&gt;--filter&lt;/span&gt; &lt;span class="nv"&gt;level&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;error &lt;span class="nt"&gt;--filter&lt;/span&gt; &lt;span class="nv"&gt;query&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;request sample-logs.jsonl
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  The Stack
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Rust&lt;/strong&gt; - for the core application&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;GTK4 + VTE4&lt;/strong&gt; - for the terminal and desktop window&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;WebKitGTK 6.0&lt;/strong&gt; - for the embedded web pane&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Where It Stands
&lt;/h2&gt;

&lt;p&gt;This is v0.1.0-beta. It's early but the core workspace is solid. The aesthetic is intentionally opinionated, dark, black and red, no theme system. One clean look.&lt;/p&gt;

&lt;p&gt;There's a lot I still want to add, but I wanted to ship something real first rather than keep building in private.&lt;/p&gt;

&lt;h2&gt;
  
  
  Try It
&lt;/h2&gt;

&lt;p&gt;Repo: [github.com/WilliamSamson/magma]&lt;/p&gt;

&lt;p&gt;You can install the &lt;code&gt;.deb&lt;/code&gt; from the releases page or build from source with &lt;code&gt;cargo build --release&lt;/code&gt;.&lt;/p&gt;

&lt;p&gt;Feedback welcome - especially if you're someone who lives in logs.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F8opz40eo3mry3u919px2.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F8opz40eo3mry3u919px2.png" alt=" " width="800" height="727"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fqkqz7j7n7hxtnbnbqiqc.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fqkqz7j7n7hxtnbnbqiqc.png" alt=" " width="800" height="727"&gt;&lt;/a&gt;&lt;/p&gt;

</description>
      <category>rust</category>
      <category>linux</category>
      <category>opensource</category>
      <category>devops</category>
    </item>
  </channel>
</rss>
