From bcd40f9a27e7e9058ecadc928337f8e340333b43 Mon Sep 17 00:00:00 2001 From: Salt Date: Fri, 16 Nov 2018 20:51:57 -0600 Subject: [PATCH] fetch: Simplify neofetch call --- fetch | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/fetch b/fetch index b1d55df..b6fc25b 100755 --- a/fetch +++ b/fetch @@ -1,11 +1,7 @@ #!/bin/sh name="$(basename $0 .sh)" if $(which neofetch > /dev/null 2>&1); then - neofetch\ - --disable model resolution\ - --block_range 0 15\ - --image wall\ - --xoffset 4 --yoffset 4 + neofetch scrot "$HOME/Pictures/Screenshots/neofetch-`date +%s`.png" else printf "$name: Neofetch is not installed; aborting\n"