ソースを参照

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

and naming them.
Lucas Stadler 11 年 前
コミット
fb2cb77de3
共有1 個のファイルを変更した9 個の追加0 個の削除を含む
  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"