summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorLuke Smith <luke@lukesmith.xyz>2020-02-09 09:03:10 -0500
committerLuke Smith <luke@lukesmith.xyz>2020-02-09 09:03:10 -0500
commitd8f57b57f6e4f7d07969a26775686b45b0e2b565 (patch)
treeb6476993c24b55ca2a884995bc35460def926c3b /bin
parent4cb726546f679bdbab95a7e81937fe6d278578c0 (diff)
muttimage replaced by openfile
Diffstat (limited to 'bin')
-rwxr-xr-xbin/mailsync1
-rwxr-xr-xbin/muttimage11
-rwxr-xr-xbin/mw3
-rwxr-xr-xbin/openfile3
4 files changed, 5 insertions, 13 deletions
diff --git a/bin/mailsync b/bin/mailsync
index 419848d..326279c 100755
--- a/bin/mailsync
+++ b/bin/mailsync
@@ -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)
diff --git a/bin/muttimage b/bin/muttimage
deleted file mode 100755
index a846bea..0000000
--- a/bin/muttimage
+++ /dev/null
@@ -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 &
diff --git a/bin/mw b/bin/mw
index 98f2b99..616b528 100755
--- a/bin/mw
+++ b/bin/mw
@@ -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" ] &&
diff --git a/bin/openfile b/bin/openfile
index b16483b..c0e2e9c 100755
--- a/bin/openfile
+++ b/bin/openfile
@@ -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"