bin/fetch
Salt 67746ee2fe 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.
2018-06-21 13:42:12 -05:00

12 lines
285 B
Bash
Executable File

#!/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