在Raspberry pi中调整Epiphany浏览器(Webbrowser)的大小

时间:2015-06-24 07:01:53

标签: raspberry-pi command-line-interface kiosk

我有一天在google上搜索,但是我没有找到任何关于如何调整webbrowser窗口大小的信息(例如,屏幕的一半),只是启动了覆盆子pi。

目前,我使用此代码在kiosk中启动了webbrowser:

$ python ninjadroid.py this_is_a_non_existing_file >> NinjaDroid: [ERROR] The target file (i.e. 'this_is_a_non_existing_file') must be an existing, readable file! $ touch this_is_an_existing_file_but_not_an_apk_package.txt $ python ninjadroid.py this_is_an_existing_file_but_not_an_apk_package.txt >> NinjaDroid: [ERROR] The target file (i.e. 'this_is_an_existing_file_but_not_an_apk_package.txt') must be an APK package! $ python ninjadroid.py test/data/Example.apk { "app_name": "Example", ... }

/etc/xdg/lxsession/LXDE-pi/autostart

如何知道如何为浏览器提供/配置给定的大小?

1 个答案:

答案 0 :(得分:0)

我自己解决了。

只需在脚本中创建脚本并使用wmctrl即可。 启动PC时,它会自动运行此脚本。

#!/bin/bash
epiphany http://www.google.de &
sleep 15s
epiphany --new-window www.wikipedia.com & 
sleep 15s
SOURCE=/usr/bin
echo "$SOURCE"
$SOURCE/wmctrl -r wikipedia -e 0,0,0,800,1080
$SOURCE/wmctrl -r Google -e 0,800,0,1120,1080