Lots: Miscellaneous style changes

This commit is contained in:
2018-09-16 12:18:41 -05:00
parent 5e7bb87950
commit 960fb298ff
6 changed files with 8 additions and 6 deletions

5
fetch
View File

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