muttimage replaced by openfile

This commit is contained in:
Luke Smith
2020-02-09 09:03:10 -05:00
parent 4cb726546f
commit d8f57b57f6
5 changed files with 6 additions and 14 deletions

View File

@ -1,4 +1,5 @@
#!/bin/sh
# Sync mail and give notification if there is new mail.
# Run only if user logged in (prevent cron errors)

View File

@ -1,11 +0,0 @@
#!/usr/bin/env 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 &

3
bin/mw
View File

@ -1,4 +1,5 @@
#!/usr/bin/env sh
#!/bin/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" ] &&

View File

@ -1,4 +1,5 @@
#!/usr/bin/env sh
#!/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"