我想在啟動時啟動一個全屏 Firefox 實體。我創建了兩個服務:
服務啟動 Firefox:
[Unit]
Description=Service running firefox
After=network.target
[Service]
Type=simple
User=me
Environment="DISPLAY=:0"
ExecStart=/usr/bin/firefox --new-window /usr/local/src/index.html
Restart=on-failure
RestartSec=1
TimeoutSec=60
RuntimeMaxSec=infinity
[Install]
WantedBy=multi-user.target
然后我有一個服務發送 F11 命令來啟用全屏。(我沒有設法從單一服務中制作所有內容)
[Unit]
Description=Service for firefox fullscreen
After=network.target start_firefox
BindsTo=start_firefox
[Service]
Type=simple
User=me
Environment="DISPLAY=:0"
ExecStart=/usr/bin/xdotool search --sync --onlyvisible --class "Firefox" windowactivate key F11
Restart=on-failure
RestartSec=1
TimeoutSec=60
RuntimeMaxSec=infinity
[Install]
WantedBy=multi-user.target
但是,它不起作用。我從第二個服務獲得的日志是:
systemd[1]: Started Service for firefox fullscreen
xdotool[6268]: Error: Can't open display: (null)
xdotool[6268]: Failed creating new xdo instance
systemd[1]: firefox_fullscreen.service: Main process exited, code=exited, status=1/FAILURE
systemd[1]: firefox_fullscreen.service: Failed with result 'exit-code'.
systemd[1]: firefox_fullscreen.service: Service hold-off time over, scheduling restart.
systemd[1]: firefox_fullscreen.service: Scheduled restart job, restart counter is at 4.
systemd[1]: Stopped Service for firefox fullscreen
我究竟做錯了什么?
我正在嘗試使用 ubuntu 在板上通過 ssh 運行它并連接到螢屏。
uj5u.com熱心網友回復:
只需使用“firefox --kiosk”,它就會自行全屏啟動
轉載請註明出處,本文鏈接:https://www.uj5u.com/qita/361067.html
