bin/fetch

12 lines
281 B
Bash
Executable File

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