bin/fetch

12 lines
287 B
Plaintext
Raw Normal View History

#!/bin/sh
if [ "`which neofetch > /dev/null 2>&1`" ]; then
neofetch\
--disable model resolution\
--block_range 0 15\
--image wall\
2018-07-14 16:23:06 -05:00
--xoffset 4 --yoffset 4
scrot "$HOME/Pictures/Screenshots/neofetch-`date +%s`.png"
else
2018-08-14 16:59:43 -05:00
printf 'fetch: Neofetch is not installed; aborting\n'
fi