Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/flandredaisuki/docker-desktop-notify

notify-send in docker version
https://github.com/flandredaisuki/docker-desktop-notify

Last synced: 25 days ago
JSON representation

notify-send in docker version

Awesome Lists containing this project

README

        

# docker-desktop-notify

## setup

Build image:

```sh
docker build . -t docker-desktop-notify
```

Run daemon:

```sh
docker run -d \
--name docker-desktop-notify \
-e DISPLAY="${DISPLAY}" \
-v /tmp/.X11-unix:/tmp/.X11-unix \
docker-desktop-notify
```

Notify:

```sh
docker exec docker-desktop-notify notify-send "Hello" "$(whoami)"
```