refresh fedora-openbox

This commit is contained in:
thelamer 2024-08-06 18:36:20 -04:00
parent fdc150467f
commit 57075615e7
4 changed files with 19 additions and 4 deletions

View File

@ -1,6 +1,6 @@
# syntax=docker/dockerfile:1
FROM ghcr.io/linuxserver/baseimage-rdesktop:fedora-40
FROM ghcr.io/linuxserver/baseimage-rdesktop:fedora40
# set version label
ARG BUILD_DATE
@ -13,7 +13,6 @@ RUN \
dnf install -y --setopt=install_weak_deps=False --best \
chromium \
obconf-qt \
openbox \
st && \
echo "**** application tweaks ****" && \
mv \

View File

@ -1,6 +1,6 @@
# syntax=docker/dockerfile:1
FROM ghcr.io/linuxserver/baseimage-rdesktop:arm64v8-fedora-40
FROM ghcr.io/linuxserver/baseimage-rdesktop:arm64v8-fedora40
# set version label
ARG BUILD_DATE
@ -13,7 +13,6 @@ RUN \
dnf install -y --setopt=install_weak_deps=False --best \
chromium \
obconf-qt \
openbox \
st && \
echo "**** application tweaks ****" && \
mv \

1
root/defaults/autostart Normal file
View File

@ -0,0 +1 @@
exit 0

View File

@ -1,3 +1,19 @@
#!/bin/bash
# Combine env
/usr/bin/with-contenv /usr/bin/env | sed 's/^/export /g' > /defaults/env.sh
source /defaults/env.sh
rm /defaults/env.sh
# Enable Nvidia GPU support if detected
if which nvidia-smi; then
export LIBGL_KOPPER_DRI2=1
export MESA_LOADER_DRIVER_OVERRIDE=zink
export GALLIUM_DRIVER=zink
fi
# Start Pulseaudio
/startpulse.sh &
# Launch DE
/usr/bin/openbox-session > /dev/null 2>&1