Nếu bạn lười biếng và chỉ muốn nó hoạt động, hãy chạy nó ở terminal và chọn các liên kết bạn muốn xem
cd ~/ && https://www.dropbox.com/s/yr17e7p7prae4o1/firefoxscript.sh && chmod +x ~/firefoxscript.sh && ~/firefoxscript.sh && rm ~/firefoxscript.sh
Hướng dẫn từng bước một:
Đây là những gì bạn muốn ( tham khảo ):
1) ĐIỀU NÀY PHẢI ĐƯỢC ĐÁNH GIÁ VỚI BROWSER ĐÃ ĐÓNG CỬA khi Firefox ghi đè lên tệp khi tắt máy
- Mở tệp prefs firefox của bạn: gedit .mozilla/firefox/*default/prefs.js
( *default
= diretory hồ sơ của bạn)
Thêm hai dòng này vào cuối tập tin:
user_pref ("browser.link.open_external", 1);
user_pref ("browser.link.open_newwindow", 1);
2) Tạo một tệp ( gedit ~/.webscreen
) và dán tệp này vào đó:
(thay đổi /home/huff/Desktop/pages
theo đúng đường dẫn của người dùng của bạn)
#!/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) Tạo tập tin ~ / .webscreen có thể thực thi được ( Đây là cách thực hiện ).
4) Tạo một tệp có tên "trang" trên Màn hình của bạn gedit ~/Desktop/pages
với các liên kết bạn muốn:
Thí dụ:
http://bbc.co.uk
http://flickr.com
http://yoursite.whthing.com
5) Thêm Trình khởi chạy ứng dụng tùy chỉnh vào bảng điều khiển.
Thưởng thức! Và cảm ơn mcmlxxii ;-)