<?xml version="1.0" encoding="UTF-8"?><rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/">
  <channel>
    <title>fastfetch &amp;mdash; Bruno&#39;s ramblings</title>
    <link>https://infosec.press/brunomiguel/tag:fastfetch</link>
    <description>A blog where I ramble about... well... stuff.</description>
    <pubDate>Wed, 24 Jun 2026 16:30:26 +0000</pubDate>
    <item>
      <title>💻 Goodbye, Neofetch, and thanks for all the fish</title>
      <link>https://infosec.press/brunomiguel/goodbye-neofetch-and-thanks-for-all-the-fish</link>
      <description>&lt;![CDATA[Fastfetch custom configuration&#xA;&#xA;Neofetch is no more. The git repository for the venerable tool to show off the users&#39; window manager configurations on /r/unixporn was archived and will no longer be maintained. Granted, it hadn&#39;t received a commit for around 3 years, so this is not unexpected.&#xA;!--more--&#xA;Thankfully, many tools of this kind abound in the FOSS world. One is Fastfetch, which is very similar to Neofetch but supposedly faster. Moments ago, I installed Fastfech and wasted a little bit of time configuring it. Why? Because.&#xA;&#xA;The main difference between the two, from a user point of view, is that JSONC is used for Fastfetch&#39;s configuration. You can see all the options for the built-in modules on the schema present at the tool&#39;s repository or the documentation. You can also use my configuration below as a starting point.&#xA;&#xA;{&#xA;    &#34;$schema&#34;: &#34;https://github.com/fastfetch-cli/fastfetch/raw/dev/doc/jsonschema.json&#34;,&#xA;    &#34;logo&#34;: {&#xA;        &#34;type&#34;: &#34;file&#34;,&#xA;        &#34;source&#34;: &#34;$HOME/.config/fastfetch/logo.txt&#34;&#xA;    },&#xA;    &#34;display&#34;: {&#xA;        &#34;separator&#34;: &#34;  -  &#34;&#xA;    },&#xA;    &#34;modules&#34;: [&#xA;        {&#xA;            &#34;type&#34;: &#34;custom&#34;,&#xA;            &#34;format&#34;: &#34;┌────────────────────────────────────────────────────────────┐&#34;&#xA;        },&#xA;        {&#xA;            &#34;type&#34;: &#34;os&#34;,&#xA;            &#34;key&#34;: &#34;│  OS&#34;&#xA;        },&#xA;        {&#xA;                &#34;type&#34;: &#34;kernel&#34;,&#xA;                &#34;key&#34;: &#34;│  Kernel&#34;&#xA;        },&#xA;        {&#xA;            &#34;type&#34;: &#34;packages&#34;,&#xA;            &#34;key&#34;: &#34;│  Packages&#34;,&#xA;        },&#xA;        {&#xA;            &#34;type&#34;: &#34;wm&#34;,&#xA;            &#34;key&#34;: &#34;│  WM&#34;,&#xA;        },&#xA;        {&#xA;            &#34;type&#34;: &#34;terminal&#34;,&#xA;            &#34;key&#34;: &#34;│  Terminal&#34;,&#xA;        },&#xA;        {&#xA;            &#34;type&#34;: &#34;shell&#34;,&#xA;            &#34;key&#34;: &#34;│  Shell&#34;&#xA;        },&#xA;        {&#xA;            &#34;type&#34;: &#34;display&#34;,&#xA;            &#34;key&#34;: &#34;│  Display&#34;&#xA;        },&#xA;        {&#xA;            &#34;type&#34;: &#34;cpu&#34;,&#xA;            &#34;key&#34;: &#34;│  CPU&#34;,&#xA;        },&#xA;        {&#xA;            &#34;type&#34;: &#34;gpu&#34;,&#xA;            &#34;key&#34;: &#34;│  GPU&#34;,&#xA;        },&#xA;        {&#xA;            &#34;type&#34;: &#34;memory&#34;,&#xA;            &#34;key&#34;: &#34;│  Memory&#34;,&#xA;        },&#xA;        {&#xA;            &#34;type&#34;: &#34;swap&#34;,&#xA;            &#34;key&#34;: &#34;│  Swap&#34;&#xA;        },&#xA;        {&#xA;            &#34;type&#34;: &#34;custom&#34;,&#xA;            &#34;format&#34;: &#34;└────────────────────────────────────────────────────────────┘&#34;&#xA;        },&#xA;        &#34;break&#34;,&#xA;        {&#xA;            &#34;type&#34;: &#34;colors&#34;&#xA;        }&#xA;    ]&#xA;}&#xA;&#xA;If you want something different, there are several options, such as Nitch, Pfetch, Catnip, and Meowfetch. I&#39;m the maintainer for the meowfetch-git package on Arch Linux&#39;s AUR, and I recommend it if you want to see a kitty every time you display your system info on the terminal.&#xA;&#xA;smallvia It&#39;s FOSS/small&#xA;&#xA;#Neofetch #Fastfetch #UnixPorn #Linux #FOSS ]]&gt;</description>
      <content:encoded><![CDATA[<p><img src="https://cld.pt/dl/download/26fcefc2-8b73-40e9-8126-5d4d7c90b81f/584db0621e3091b5.png" alt="Fastfetch custom configuration" title="Fastfetch custom configuration"></p>

<p><a href="https://news.itsfoss.com/neofetch-rip/" rel="nofollow">Neofetch</a> is no more. The git repository for the venerable tool to show off the users&#39; window manager configurations on /r/unixporn was archived and will no longer be maintained. Granted, it hadn&#39;t received a commit for around 3 years, so this is not unexpected.

Thankfully, many tools of this kind abound in the FOSS world. One is <a href="https://github.com/fastfetch-cli/fastfetch" rel="nofollow">Fastfetch</a>, which is very similar to Neofetch but supposedly faster. Moments ago, I installed Fastfech and wasted a little bit of time configuring it. Why? Because.</p>

<p>The main difference between the two, from a user point of view, is that JSONC is used for Fastfetch&#39;s configuration. You can see all the options for the built-in modules on the schema present at the tool&#39;s <a href="https://github.com/fastfetch-cli/fastfetch/blob/dev/doc/json_schema.json" rel="nofollow">repository</a> or the <a href="https://github.com/fastfetch-cli/fastfetch/wiki/Json-Schema" rel="nofollow">documentation</a>. You can also use my configuration below as a starting point.</p>

<pre><code class="language-json">{
    &#34;$schema&#34;: &#34;https://github.com/fastfetch-cli/fastfetch/raw/dev/doc/json_schema.json&#34;,
    &#34;logo&#34;: {
        &#34;type&#34;: &#34;file&#34;,
        &#34;source&#34;: &#34;$HOME/.config/fastfetch/logo.txt&#34;
    },
    &#34;display&#34;: {
        &#34;separator&#34;: &#34;  -&gt; &#34;
    },
    &#34;modules&#34;: [
        {
            &#34;type&#34;: &#34;custom&#34;,
            &#34;format&#34;: &#34;┌────────────────────────────────────────────────────────────┐&#34;
        },
        {
            &#34;type&#34;: &#34;os&#34;,
            &#34;key&#34;: &#34;│  OS&#34;
        },
        {
                &#34;type&#34;: &#34;kernel&#34;,
                &#34;key&#34;: &#34;│  Kernel&#34;
        },
        {
            &#34;type&#34;: &#34;packages&#34;,
            &#34;key&#34;: &#34;│  Packages&#34;,
        },
        {
            &#34;type&#34;: &#34;wm&#34;,
            &#34;key&#34;: &#34;│  WM&#34;,
        },
        {
            &#34;type&#34;: &#34;terminal&#34;,
            &#34;key&#34;: &#34;│  Terminal&#34;,
        },
        {
            &#34;type&#34;: &#34;shell&#34;,
            &#34;key&#34;: &#34;│  Shell&#34;
        },
        {
            &#34;type&#34;: &#34;display&#34;,
            &#34;key&#34;: &#34;│  Display&#34;
        },
        {
            &#34;type&#34;: &#34;cpu&#34;,
            &#34;key&#34;: &#34;│  CPU&#34;,
        },
        {
            &#34;type&#34;: &#34;gpu&#34;,
            &#34;key&#34;: &#34;│  GPU&#34;,
        },
        {
            &#34;type&#34;: &#34;memory&#34;,
            &#34;key&#34;: &#34;│  Memory&#34;,
        },
        {
            &#34;type&#34;: &#34;swap&#34;,
            &#34;key&#34;: &#34;│  Swap&#34;
        },
        {
            &#34;type&#34;: &#34;custom&#34;,
            &#34;format&#34;: &#34;└────────────────────────────────────────────────────────────┘&#34;
        },
        &#34;break&#34;,
        {
            &#34;type&#34;: &#34;colors&#34;
        }
    ]
}

</code></pre>

<p>If you want something different, there are several options, such as Nitch, Pfetch, Catnip, and Meowfetch. I&#39;m the maintainer for the <a href="https://aur.archlinux.org/packages/meowfetch-git" rel="nofollow">meowfetch-git package</a> on Arch Linux&#39;s AUR, and I recommend it if you want to see a kitty every time you display your system info on the terminal.</p>

<p><small>via <a href="https://news.itsfoss.com/neofetch-rip/" rel="nofollow">It&#39;s FOSS</a></small></p>

<p><a href="/brunomiguel/tag:Neofetch" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">Neofetch</span></a> <a href="/brunomiguel/tag:Fastfetch" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">Fastfetch</span></a> <a href="/brunomiguel/tag:UnixPorn" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">UnixPorn</span></a> <a href="/brunomiguel/tag:Linux" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">Linux</span></a> <a href="/brunomiguel/tag:FOSS" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">FOSS</span></a></p>
]]></content:encoded>
      <guid>https://infosec.press/brunomiguel/goodbye-neofetch-and-thanks-for-all-the-fish</guid>
      <pubDate>Wed, 01 May 2024 20:53:57 +0000</pubDate>
    </item>
  </channel>
</rss>