我有一天在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
如何知道如何为浏览器提供/配置给定的大小?
答案 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