私は最近、zshスクリプトのための.app
ラッパーを作ったが、私がそれを実行すると、そのアプリケーションのアイコンがDockでホッピングし続ける。 アプリラッパースクリプトの起動後、ドックアイコンのバウンドが止まるようにするにはどうすればよいですか?
アプリ
は基本的には次のとおりです。% find Example.app -type f
Example.app/Contents/Info.plist
Example.app/Contents/MacOS/wrapper.sh
% cat Example.app/Contents/Info.plist
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<!-- tell OSX what the name of the executable is -->
<key>CFBundleExecutable</key>
<string>wrapper.sh</string>
</dict>
</plist>
% cat Example.app/Contents/MacOS/wrapper.sh
#!/usr/bin/env zsh
# not my real script, but something else that hangs for a while
sleep 10
%
することもできますgrab it from github。
ホッピングを止めて通常のアプリのように動作し、その隣に三角形のある のアイコンが表示される方法はありますか?
理由を説明してくれてありがとう! – rampion