sync webtop changes

This commit is contained in:
thelamer 2024-01-17 13:58:18 -08:00 committed by Ryan Kuba
parent 04003e8f43
commit dc4569bb59
4 changed files with 12 additions and 5 deletions

View File

@ -1,6 +1,6 @@
# syntax=docker/dockerfile:1
FROM ghcr.io/linuxserver/baseimage-rdesktop:fedora-38
FROM ghcr.io/linuxserver/baseimage-rdesktop:fedora-39
# set version label
ARG BUILD_DATE

View File

@ -1,6 +1,6 @@
# syntax=docker/dockerfile:1
FROM ghcr.io/linuxserver/baseimage-rdesktop:arm64v8-fedora-38
FROM ghcr.io/linuxserver/baseimage-rdesktop:arm64v8-fedora-39
# set version label
ARG BUILD_DATE

View File

@ -1,3 +1,5 @@
#!/bin/bash
/startpulse.sh &
/usr/bin/i3
setterm blank 0
setterm powerdown 0
/usr/bin/i3 > /dev/null 2>&1

View File

@ -1,9 +1,14 @@
#!/bin/bash
#! /bin/bash
BIN=/usr/bin/chromium-real
# Cleanup
if ! pgrep chromium > /dev/null;then
rm -f $HOME/.config/chromium/Singleton*
fi
# Run normally on privved containers or modified un non priv
if grep -q 'Seccomp: 0' /proc/1/status; then
if grep -q 'Seccomp:\t0' /proc/1/status; then
${BIN} --password-store=basic "$@"
else
${BIN} --password-store=basic --no-sandbox --test-type "$@"