소스 검색

integrate mailsync into mw 1

pull/276/head
Roland Puntaier 5 년 전
부모
커밋
caf79d7a78
2개의 변경된 파일19개의 추가작업 그리고 0개의 파일을 삭제
  1. +11
    -0
      bin/mwimage
  2. +8
    -0
      bin/mwopen

+ 11
- 0
bin/mwimage 파일 보기

@@ -0,0 +1,11 @@
#!/bin/bash

#get image resolution
resolution=$(identify $1 | awk '{print $3}')
IFS='x' # x is set as delimiter
read -ra ADDR <<< "$resolution"
width=${ADDR[0]}
height=${ADDR[1]}

### Display Image / offset with mutt bar
echo -e "2;3;\n0;1;0;42;$((width));$((height));0;0;0;0;$1\n4;\n3;" | /usr/lib/w3m/w3mimgdisplay &

+ 8
- 0
bin/mwopen 파일 보기

@@ -0,0 +1,8 @@
#!/bin/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"
file="/tmp/$USER-mutt-tmp/$(basename "$1")"
rm -f "$file"
cp "$1" "$file"
$opener "$file" >/dev/null 2>&1 &

불러오는 중...
취소
저장