aboutsummaryrefslogblamecommitdiffstats
path: root/fish/functions/screenshot.fish
blob: 8b1f736e767ea8b933b03a629a739f6db7b3f579 (plain) (tree)
1
2
3
4



                                                                                                        
# Defined in - @ line 1
function screenshot --description 'alias screenshot=xwd | xwdtopnm | pnmtopng > ~/Downloads/capture.png'
	xwd | xwdtopnm | pnmtopng > ~/Downloads/capture.png $argv;
end