aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--alias5
-rw-r--r--tigrc2
2 files changed, 5 insertions, 2 deletions
diff --git a/alias b/alias
index e434697..c27398f 100644
--- a/alias
+++ b/alias
@@ -221,7 +221,10 @@ alias xc='xsel -ob | gcc -xc -'
221 221
222# image 222# image
223image_vertical() { 223image_vertical() {
224 convert $@ -append output.png 224 convert "$@" -append output.png
225}
226image_horizontal() {
227 convert "$@" +append output.png
225} 228}
226 229
227# mail mutt 230# mail mutt
diff --git a/tigrc b/tigrc
index 5350127..c42fbb9 100644
--- a/tigrc
+++ b/tigrc
@@ -95,7 +95,7 @@ bind main 1 +sh -c "git rev-list --all --children | \
95bind main b none 95bind main b none
96bind main bn @git branch "%(prompt Enter branch name: )" %(commit) 96bind main bn @git branch "%(prompt Enter branch name: )" %(commit)
97bind main bN @git branch %(branch) --track %(remote)/%(branch) 97bind main bN @git branch %(branch) --track %(remote)/%(branch)
98bind main bu @git branch --set-upstream-to="%(prompt Set remote: )"/%(branch) %(branch) 98bind main bu @git branch --set-upstream-to="%(prompt Set remote/branch: )"/%(branch) %(branch)
99bind main bc @git checkout -b "%(prompt Checkout at new branch: )" %(commit) 99bind main bc @git checkout -b "%(prompt Checkout at new branch: )" %(commit)
100bind generic bd @git branch -d "%(prompt Delete branch: )" 100bind generic bd @git branch -d "%(prompt Delete branch: )"
101bind main bbd @git branch -d %(branch) 101bind main bbd @git branch -d %(branch)