Skip to content
This repository was archived by the owner on Jun 30, 2021. It is now read-only.

Commit de04248

Browse files
committed
Add notify-send support so message popups like 'Test Failed' will be seen in videos
1 parent 2e24901 commit de04248

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

Dockerfile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -369,11 +369,13 @@ RUN apt-get -qqy update \
369369
# fluxbox
370370
# A fast, lightweight and responsive window manager
371371
#=========
372+
# xfce4-notifyd adds 5mb but allows `notify-send` notifications
372373
# Layer size: small: 9.659 MB
373374
# Layer size: small: 6.592 MB (with --no-install-recommends)
374375
RUN apt-get -qqy update \
375376
&& apt-get -qqy install \
376377
fluxbox \
378+
xfce4-notifyd \
377379
&& rm -rf /var/lib/apt/lists/* \
378380
&& apt-get -qyy clean
379381

bin/notify

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
#!/usr/bin/env bash
2+
3+
export DISPLAY=$(cat DISPLAY)
4+
5+
exec notify-send $@

0 commit comments

Comments
 (0)