怠け者で動作させたい場合は、ターミナルでこれを実行し、表示したいリンクを選択してください
cd ~/ && https://www.dropbox.com/s/yr17e7p7prae4o1/firefoxscript.sh && chmod +x ~/firefoxscript.sh && ~/firefoxscript.sh && rm ~/firefoxscript.sh
ステップバイステップの手順:
これはあなたが望むものです(参照):
1)これは、Firefoxがシャットダウン時にファイルを上書きするため、ブラウザを閉じて行う必要があります-firefoxの設定ファイルを
開きます:gedit .mozilla/firefox/*default/prefs.js
(*default
=プロファイルのディレクトリ)
2)ファイル()を作成し、gedit ~/.webscreen
これに貼り付けます(ユーザーの正しいパスに
変更 /home/huff/Desktop/pages
します)
#!/bin/bash
remoteclient=$(find /usr/lib/ -type f -name mozilla-xremote-client | grep -m 1 xulrunner)
if [ `ps -e | grep firefox | wc -l` -eq 0 ]; then
/usr/bin/firefox -fullscreen &
sleep 5
fi
while [ `ps -e | grep firefox | wc -l` -gt 0 ]; do
urls=$(cat /home/huff/Desktop/pages)
for i in $urls
do
$remoteclient -a firefox "openurl($i)"
if [ $? -gt 0 ]; then
echo "Firefox not running or ignoring me, bailing out...."
killall firefox
exit 0
fi
sleep 15
done
done
exit 0
3)〜/ .webscreen ファイルを実行可能にします(その方法は次のとおりです)。
4)デスクトップに「pages」という名前のファイルを作成し、 gedit ~/Desktop/pages
必要なリンクを付けます。
例:
http://bbc.co.uk
http://flickr.com
http://yoursite.whatever.com
5)カスタムアプリケーションランチャーをパネルに追加します。
楽しい!そして、mcmlxxiiに感謝します ;-)