หากคุณขี้เกียจและต้องการให้มันใช้งานได้ที่เทอร์มินัลแล้วเลือกลิงก์ที่คุณต้องการดู
cd ~/ && https://www.dropbox.com/s/yr17e7p7prae4o1/firefoxscript.sh && chmod +x ~/firefoxscript.sh && ~/firefoxscript.sh && rm ~/firefoxscript.sh
คำแนะนำทีละขั้นตอน:
นี่คือสิ่งที่คุณต้องการ ( อ้างอิง ):
1) สิ่งนี้จะต้องทำด้วยการปิดเบราว์เซอร์ขณะที่ Firefox จะเขียนทับไฟล์เมื่อปิด
- เปิดไฟล์ firefox prefs ของคุณ: gedit .mozilla/firefox/*default/prefs.js
( *default
= โปรไฟล์ของคุณ diretory)
เพิ่มสองบรรทัดต่อท้ายไฟล์:
user_pref ("browser.link.open_external", 1);
user_pref ("browser.link.open_newwindow", 1);
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" ที่ Desktop ของคุณ gedit ~/Desktop/pages
ด้วยลิงค์ที่คุณต้องการ:
ตัวอย่าง:
http://bbc.co.uk
http://flickr.com
http://yoursite.whatever.com
5) เพิ่ม Custom Application Launcher เข้าไปในพาเนล
สนุก! และต้องขอบคุณmcmlxxii ;-)