Pārlūkot izejas kodu

~/.bin/capture: take screenshots by selecting the area/window.

and naming them.
Lucas Stadler 11 gadi atpakaļ
vecāks
revīzija
fb2cb77de3
1 mainītis faili ar 9 papildinājumiem un 0 dzēšanām
  1. 9 0
      .bin/capture

+ 9 - 0
.bin/capture

@ -0,0 +1,9 @@
1
#!/bin/bash
2
3
if [ "$1" = "" ]; then
4
	prefix=""
5
else
6
	prefix="$1-"
7
fi
8
9
scrot -s -e "mv \$f ~/m/pictures/$prefix\$f"