Ver a proveniência

env bash

tags/v3.1
Luke Smith há 5 anos
ascendente
cometimento
938af8f7eb
Não foi encontrada uma chave conhecida para esta assinatura, na base de dados ID da chave GPG: 4C50B54A911F6252
3 ficheiros alterados com 4 adições e 4 eliminações
  1. +2
    -2
      bin/muttimage
  2. +1
    -1
      bin/mw
  3. +1
    -1
      bin/openfile

+ 2
- 2
bin/muttimage Ver ficheiro

@@ -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
- 1
bin/mw Ver ficheiro

@@ -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
- 1
bin/openfile Ver ficheiro

@@ -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"


Carregando…
Cancelar
Guardar