From b6438029e7934d2721e22fffddd71949f61d1a75 Mon Sep 17 00:00:00 2001 From: Jordan Atwood Date: Wed, 4 Jan 2023 20:20:08 -0800 Subject: [PATCH] Fix neofetch config filename I had a brain slip when I named the file `.json` originally. --- src/.bashrc | 2 +- src/{.neofetch.config.json => .neofetch.config.conf} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename src/{.neofetch.config.json => .neofetch.config.conf} (100%) diff --git a/src/.bashrc b/src/.bashrc index e031081..403c38a 100755 --- a/src/.bashrc +++ b/src/.bashrc @@ -246,7 +246,7 @@ function _bashrc_randomcolor { # prints a message of the day (time, shell info, system info, etc.) function _bashrc_motd { if type neofetch >/dev/null 2>/dev/null; then - neofetch --config ~/.neofetch.config.json 2>/dev/null + neofetch --config ~/.neofetch.config.conf 2>/dev/null return fi diff --git a/src/.neofetch.config.json b/src/.neofetch.config.conf similarity index 100% rename from src/.neofetch.config.json rename to src/.neofetch.config.conf