All checks were successful
basementhud/pipeline/head This commit looks good
The window manager needs to be running before we trigger *hudctrl* to open the Firefox windows, otherwise they will not be able to go into fullscreen.
13 lines
202 B
Bash
13 lines
202 B
Bash
#!/bin/sh
|
|
|
|
xset s off
|
|
xset -dpms
|
|
|
|
TZ="$(curl https://ipapi.co/timezone)"
|
|
export TZ
|
|
|
|
systemctl --user import-environment DISPLAY TZ
|
|
systemctl --user start firefox-marionette.socket firefox
|
|
|
|
exec openbox
|