From 67746ee2fe51855034bbb6fd2b1626b6d8b0158d Mon Sep 17 00:00:00 2001 From: Salt Date: Thu, 21 Jun 2018 13:42:12 -0500 Subject: [PATCH] fetch: Add small Neofetch script Seemed kind of hacky to have it in my .profile. This also lets me add some options and context-sensitivity, should I want that. --- fetch | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100755 fetch diff --git a/fetch b/fetch new file mode 100755 index 0000000..9fa9f9f --- /dev/null +++ b/fetch @@ -0,0 +1,11 @@ +#!/bin/sh +if [ `which neofetch` ]; then + neofetch\ + --disable model resolution\ + --block_range 0 15\ + --image wall\ + --xoffset 4 --yoffset 4\ + --scrot "$HOME/Pictures/Screenshots/neofetch-`date +%s`.png" +else + prinf 'fetch: Neofetch is not installed; aborting\n' +fi