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