Hi
So happy today because i made it it worked...
here is my steps: with flash plugins how to:
[QUOTE:]
======================================
cat /usr/share/xsessions/kiosk.desktop
[Desktop Entry]
Encoding=UTF-8
Name=Kiosk Mode
Comment=Chromium Kiosk Mode
Exec=/usr/share/xsessions/chromeKiosk.sh
Type=Application
=====================================
Create File: sudo nano /usr/share/xsessions/chromeKiosk.sh
[Add]
#!/bin/bash
#get current resolution from xrandr and save the screen size into the chrome Preferences. If not done chome starts in fullscreen with the size of the last window.
cat ~/.config/google-chrome/Default/Preferences | perl -pe "s/\"bottom.*/\"bottom\": $(xrandr | grep \* | cut -d' ' -f4 | cut -d'x' -f2),/" > ~/.config/google-chrome/Default/Preferences
cat ~/.config/google-chrome/Default/Preferences | perl -pe "s/\"right.*/\"right\": $(xrandr | grep \* | cut -d' ' -f4 | cut -d'x' -f1),/" > ~/.config/google-chrome/Default/Preferences
while true;
do chromium-browser %u --proxy-server=x.x.x.x:xxx
http://www.yourwebsite --start-maximied; sleep 5s; done
#Turn off screensaver
xset s off
#turn off power management
xset -dpms
========================================
How to install Flash Player or plugins in CHROMIUM Browser
http://www.webupd8.org/2013/04/insta...layer-for.html
sudo add-apt-repository ppa:skunk/pepper-flash
sudo apt-get update
sudo apt-get install pepflashplugin-installer
sudo apt-get install gksu #it`s not installed by default in Ubuntu 13.04
gksu gksu gedit /etc/chromium-browser/default
==and in that file, paste the following line at the bottom of the file (after the CHROMIUM_FLAGS="" line):==
CODE:
. /usr/lib/pepflashplugin-installer/pepflashplayer.sh
((yes, there's a dot in the beginning of the line, then a space!))
Address Bar: chrome
lugins [/QUOTE:]
One question: is it possible to set wallpaper in the background?
thanks