rustile 0.0.8

This is a Window Tiling Manager with Rust on x11 for now
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
FROM rust:latest

# Instalamos dependencias de X11 y herramientas de prueba
RUN apt-get update && apt-get install -y \
    libx11-dev \
    libxcb1-dev \
    libxcb-keysyms1-dev \
    xserver-xephyr \
    xterm \
    x11-apps \
    && rm -rf /var/lib/apt/lists/*

WORKDIR /app
COPY .. .

# Comando por defecto: mantiene el contenedor vivo
CMD ["sleep", "infinity"]