2017-02-28 61 views
1

我試圖在kiosk模式樹莓派3(官方傑西)運行Chromium瀏覽器。鉻kiosk模式:全屏和刪除地址欄

這裏是我在我的自動啓動文件

@point-rpi 
@xset s noblank 
@xset s off 
@xset -dpms 

@chromium-browser --kisok www.fb.com 

也能正常工作已經添加但有些問題發生。

瀏覽器未完全窗口打開也地址欄仍然存在鉻

所以,我怎麼能去除上述兩項

+0

@JasonVearncombe讓我試試 – Jabaa

回答

2

嘗試改變這種

#@xscreensaver -no-splash # comment this line out to disable screensaver 
@xset s off 
@xset -dpms 
@xset s noblank 
@chromium-browser --incognito --kiosk http://www.fb.com/ 
+0

它的工作一個問題如何禁用鼠標指針 – Jabaa

2

我有一個類似的問題......我最終在主目錄中的.xinitrc文件中使用了它。

#Disable DPMS. 
xset -dpms 
xset s off 
xset s noblank 

#Lets remove a lock file that could be caused due to a crash. 
rm /home/pi/.config/chromium/SingletonLock 

while true; do 
    # Clean up previously running apps, gracefully at first then harshly 
    killall -TERM chromium-browser 2>/dev/null; 
    killall -TERM matchbox-window-manager 2>/dev/null; 

    sleep 2; 

    killall -9 chromium-browser 2>/dev/null; 
    killall -9 matchbox-window-manager 2>/dev/null; 

    # Launch window manager without title bar. 
    exec matchbox-window-manager -use_titlebar no -use_cursor no -theme bluebox & 

    # Run unclutter 
    unclutter & 

    # Launch browser. 
    chromium-browser --incognito --kiosk --noerrdialogs --disable-translate --disable-cache --disk-cache-dir=/dev/null --disk-cache-size=1 --app=http://URL_TO_GO_TO 

done; 

我使用火柴盒窗口管理器,並不得不做一些其他的調整,但這是我使用的。

+0

如何做隱藏鼠標指針 – Jabaa

+1

@Jabaa:正是在這行代碼......我用火柴盒隱藏我的光標:EXEC火柴盒窗口管理-use_titlebar沒有-use_cursor沒有-theme BLUEBOX& 我目前在703個督察運行領域l我們的分支機構(體育博彩業)顯示器,它的作用像一個魅力。 –

0

隱藏光標在樹莓派另一種方法是安裝unclutter

的apt-get安裝unclutter