The Problem:
Needed to run multiple Opera browsers on kiosk monitors on one KDE based machine. Drop this code into a file in: ~/.kde/Autostart/
The Solution:
#!/bin/bash
cd ~/.opera
rm -f lock
cd
cp -rp ~/.opera ~/.opera0
cp -rp ~/.opera ~/.opera1
opera -nosession -fullscreen -nomail -nosave -display :0.0 -pd ~/.opera0 'URL_HERE' &
opera -nosession -fullscreen -nomail -nosave -display :0.1 -pd ~/.opera1 'URL_HERE' &
killall kicker
If you go through first and accept the agreement by just running opera directly, when it copies the profile for the multi-session mode above, you will not get the annoyances.




No comments yet.