Luke Smith
5 년 전
No known key found for this signature in database
GPG 키 ID: 4C50B54A911F6252
3개의 변경된 파일과
4개의 추가작업 그리고
4개의 파일을 삭제
-
bin/muttimage
-
bin/mw
-
bin/openfile
|
|
@@ -1,9 +1,9 @@ |
|
|
|
#!/bin/bash |
|
|
|
#!/usr/bin/env bash |
|
|
|
|
|
|
|
#get image resolution |
|
|
|
resolution=$(identify $1 | awk '{print $3}') |
|
|
|
IFS='x' # x is set as delimiter |
|
|
|
read -ra ADDR <<< "$resolution" |
|
|
|
read -ra ADDR <<< "$resolution" |
|
|
|
width=${ADDR[0]} |
|
|
|
height=${ADDR[1]} |
|
|
|
|
|
|
|
|
|
@@ -1,4 +1,4 @@ |
|
|
|
#!/bin/sh |
|
|
|
#!/usr/bin/env sh |
|
|
|
command -V gpg >/dev/null 2>&1 && GPG="gpg" || GPG="gpg2" |
|
|
|
[ -z ${PASSWORD_STORE_DIR+x} ] && PASSWORD_STORE_DIR="$HOME/.password-store" |
|
|
|
[ -r "$PASSWORD_STORE_DIR/.gpg-id" ] && |
|
|
|
|
|
@@ -1,4 +1,4 @@ |
|
|
|
#!/bin/sh |
|
|
|
#!/usr/bin/env sh |
|
|
|
# Helps open a file with xdg-open from mutt in a external program without weird side effects. |
|
|
|
[ $(uname) = "Darwin" ] && opener="open" || opener="setsid xdg-open" |
|
|
|
mkdir -p "/tmp/$USER-mutt-tmp" |
|
|
|