@haibun/utils 1.59.1 → 1.59.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/vcapture/Dockerfile +0 -6
- package/vcapture/entrypoint.sh +2 -0
package/package.json
CHANGED
package/vcapture/Dockerfile
CHANGED
|
@@ -47,10 +47,4 @@ RUN npm i # && npm install kokoro-js # kokoro-js is installed on demand in captu
|
|
|
47
47
|
RUN mkdir -p /run/user/1000 && chmod 700 /run/user/1000
|
|
48
48
|
|
|
49
49
|
# Set xfce4 as the default desktop environment
|
|
50
|
-
ENV DISPLAY=:1
|
|
51
|
-
RUN echo "xfce4-session" > ~/.xsession
|
|
52
|
-
|
|
53
|
-
# Start xfce4 session in the background
|
|
54
|
-
RUN echo "xfce4-session &" >> /etc/profile
|
|
55
|
-
|
|
56
50
|
ENTRYPOINT ["./entrypoint.sh"]
|
package/vcapture/entrypoint.sh
CHANGED
|
@@ -52,6 +52,8 @@ echo "entrypoint is setting up the environment (logfile is $LOGFILE)"
|
|
|
52
52
|
|
|
53
53
|
} >"$LOGFILE" 2>&1
|
|
54
54
|
|
|
55
|
+
xfce4-session &
|
|
56
|
+
|
|
55
57
|
echo $COMMAND_TO_RECORD > output/command_to_record.txt
|
|
56
58
|
echo "Command recorded in output/command_to_record.txt"
|
|
57
59
|
eval "$COMMAND_TO_RECORD"
|