mirror of
https://github.com/linuxserver/docker-webtop.git
synced 2025-08-23 10:38:39 +02:00
14 lines
297 B
Bash
Executable File
14 lines
297 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Disable blanking
|
|
setterm blank 0
|
|
setterm powerdown 0
|
|
|
|
# Dbus defaults
|
|
export XDG_RUNTIME_DIR="/tmp/xdg-runtime-${PUID}"
|
|
mkdir -p -m700 "${XDG_RUNTIME_DIR}"
|
|
chown -R "${PUID}:${PGID}" "${XDG_RUNTIME_DIR}"
|
|
|
|
# Start DE
|
|
exec dbus-launch --exit-with-session /usr/bin/i3 > /dev/null 2>&1
|