Skip to content

Commit

Permalink
fetch: Add small Neofetch script
Browse files Browse the repository at this point in the history
Seemed kind of hacky to have it in my .profile. This also lets me add some options and context-sensitivity, should I want that.
  • Loading branch information
rehashedsalt committed Jun 21, 2018
1 parent 8d91909 commit 67746ee
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions fetch
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
#!/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

0 comments on commit 67746ee

Please sign in to comment.