shownotes-w3m-rice/scrot_functions.txt

13 lines
421 B
Plaintext
Raw Normal View History

2013-05-24 22:14:09 +00:00
# this is notes for video: http://www.youtube.com/watch?v=Hh8G1aBp8gc
2013-05-21 04:27:51 +00:00
# your screenshot folder location
# u can use /tmp if you want it to get delete on shutdown
2013-05-21 16:51:23 +00:00
export PATH_SCREENSHOT=~/Pictures
2013-05-21 04:27:51 +00:00
# take screenshot fullscreen, single window or draw a box
pix() { scrot -d 2 "$PATH_SCREENSHOT/fullscr_`date +'%F_%Hh%M'`.png" ;}
pix-winarea() { sleep 2 && scrot -s "$PATH_SCREENSHOT/windowed_`date +'%F_%Hh%M'`.png" ;}