mirror of
https://github.com/linuxserver/docker-webtop.git
synced 2025-07-31 01:24:47 +02:00
15 lines
297 B
Bash
Executable File
15 lines
297 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# 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
|
|
|
|
setterm blank 0
|
|
setterm powerdown 0
|
|
|
|
# Start DE
|
|
exec dbus-launch --exit-with-session /usr/bin/i3 > /dev/null 2>&1
|