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