O Pashua Mac não me permite alinhar uma imagem sobre a caixa de entrada. Eu tentei várias opções, mas sem sucesso

0

Recentemente, comecei a brincar com o Pashua, mas parece estar me dando alguns problemas. Atualmente estou usando isso para um script de shell (Bash) e editei o arquivo de exemplo para chegar perto dos resultados desejados, mas ainda não cheguei lá.

Eu noto algumas coisas. Pashua tem um arquivo chamado "Pashua.sh", que eu suponho tenta localizar o aplicativo, bem como os recursos do pacote. Agora eu estou querendo saber, este é um arquivo obrigatório, ou seja:

Não posso simplesmente chamar o aplicativo Pashua no meu próprio script de shell? Mesmo se eu souber o destino exato em que isso nunca mudará.

Eu realmente preciso deste arquivo Pashua.sh?

Meu último problema que estou tendo é relocar a imagem para o canto superior esquerdo. Apenas não funcionará como a caixa de entrada está no topo. Eu também coloco as posições absolutas para a imagem, mas não funciona.

#!/bin/bash -x

MYDIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"

# Include pashua.sh to be able to use the 2 functions defined in that file
source "$MYDIR/pashua.sh"

# Define what the dialog should be like
# Take a look at Pashua's Readme file for more info on the syntax

conf="
# Set window title
*.title = App Store

# Add a text field
tf.type = password
tf.x = 100
tf.y = 200
tf.label = Example textfield
tf.width = 310

# Add a cancel button with default label
cb.type = cancelbutton
cb.tooltip = This is an element of type “cancelbutton”

db.type = defaultbutton
db.tooltip = This is an element of type “defaultbutton” (which is automatically added to each window, if not included in the configuration)
"

if [ -d '/Volumes/Pashua/Pashua.app' ]
then
    # Looks like the Pashua disk image is mounted. Run from there.
    customLocation='/Volumes/Pashua'
else
    # Search for Pashua in the standard locations
    customLocation=''
fi

# Get the icon from the application bundle
locate_pashua "$customLocation"
bundlecontents=$(dirname $(dirname "$pashuapath"))
if [ -e "$bundlecontents/Resources/[email protected]" ]
then
    conf="$conf
          img.type = image
          img.x = 25
          img.y = 25
          img.maxwidth = 64
          img.path = $bundlecontents/Resources/AppIcon.icns"
fi


pashua_run "$conf" "$customLocation"

echo "Pashua created the following variables:"
echo "  tb  = $tb"
echo "  tf  = $tf"
echo "  ob  = $ob"
echo "  pop = $pop"
echo "  rb  = $rb"
echo "  cb  = $cb"
echo "  chk = $chk"
echo ""
    
por James Dean 03.10.2018 / 20:22

0 respostas