rebase ubuntu-kde to selkies setup default settings (#316)

This commit is contained in:
Ryan Kuba 2025-06-17 14:52:29 +00:00 committed by GitHub
parent 43b88ddec1
commit 173ffdb9ec
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
14 changed files with 95 additions and 32 deletions

0
.editorconfig Executable file → Normal file
View File

0
.github/ISSUE_TEMPLATE/issue.bug.yml vendored Executable file → Normal file
View File

0
.github/ISSUE_TEMPLATE/issue.feature.yml vendored Executable file → Normal file
View File

0
.github/workflows/call_issue_pr_tracker.yml vendored Executable file → Normal file
View File

0
.github/workflows/call_issues_cron.yml vendored Executable file → Normal file
View File

0
.github/workflows/permissions.yml vendored Executable file → Normal file
View File

View File

@ -1,4 +1,4 @@
FROM ghcr.io/linuxserver/baseimage-kasmvnc:ubuntunoble FROM ghcr.io/linuxserver/baseimage-selkies:ubuntunoble
# set version label # set version label
ARG BUILD_DATE ARG BUILD_DATE
@ -10,21 +10,23 @@ ARG DEBIAN_FRONTEND="noninteractive"
# title # title
ENV TITLE="Ubuntu KDE" ENV TITLE="Ubuntu KDE"
# prevent Ubuntu's firefox stub from being installed
COPY /root/etc/apt/preferences.d/firefox-no-snap /etc/apt/preferences.d/firefox-no-snap
RUN \ RUN \
echo "**** add icon ****" && \ echo "**** add icon ****" && \
curl -o \ curl -o \
/kclient/public/icon.png \ /usr/share/selkies/www/icon.png \
https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/webtop-logo.png && \ https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/webtop-logo.png && \
echo "**** install packages ****" && \ echo "**** install packages ****" && \
add-apt-repository -y ppa:mozillateam/ppa && \ apt-key adv \
--keyserver hkp://keyserver.ubuntu.com:80 \
--recv-keys 5301FA4FD93244FBC6F6149982BB6851C64F6880 && \
echo \
"deb https://ppa.launchpadcontent.net/xtradeb/apps/ubuntu noble main" > \
/etc/apt/sources.list.d/xtradeb.list && \
apt-get update && \ apt-get update && \
DEBIAN_FRONTEND=noninteractive \ DEBIAN_FRONTEND=noninteractive \
apt-get install --no-install-recommends -y \ apt-get install --no-install-recommends -y \
chromium \
dolphin \ dolphin \
firefox \
gwenview \ gwenview \
kde-config-gtk-style \ kde-config-gtk-style \
kdialog \ kdialog \
@ -42,9 +44,12 @@ RUN \
kwrite \ kwrite \
plasma-desktop \ plasma-desktop \
plasma-workspace \ plasma-workspace \
plymouth-theme-kubuntu-logo \
qml-module-qt-labs-platform \ qml-module-qt-labs-platform \
systemsettings && \ systemsettings && \
echo "**** application tweaks ****" && \
sed -i \
's#^Exec=.*#Exec=/usr/local/bin/wrapped-chromium#g' \
/usr/share/applications/chromium.desktop && \
echo "**** kde tweaks ****" && \ echo "**** kde tweaks ****" && \
sed -i \ sed -i \
's/applications:org.kde.discover.desktop,/applications:org.kde.konsole.desktop,/g' \ 's/applications:org.kde.discover.desktop,/applications:org.kde.konsole.desktop,/g' \

View File

@ -1,4 +1,4 @@
FROM ghcr.io/linuxserver/baseimage-kasmvnc:arm64v8-ubuntunoble FROM ghcr.io/linuxserver/baseimage-selkies:arm64v8-ubuntunoble
# set version label # set version label
ARG BUILD_DATE ARG BUILD_DATE
@ -10,21 +10,23 @@ ARG DEBIAN_FRONTEND="noninteractive"
# title # title
ENV TITLE="Ubuntu KDE" ENV TITLE="Ubuntu KDE"
# prevent Ubuntu's firefox stub from being installed
COPY /root/etc/apt/preferences.d/firefox-no-snap /etc/apt/preferences.d/firefox-no-snap
RUN \ RUN \
echo "**** add icon ****" && \ echo "**** add icon ****" && \
curl -o \ curl -o \
/kclient/public/icon.png \ /usr/share/selkies/www/icon.png \
https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/webtop-logo.png && \ https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/webtop-logo.png && \
echo "**** install packages ****" && \ echo "**** install packages ****" && \
add-apt-repository -y ppa:mozillateam/ppa && \ apt-key adv \
--keyserver hkp://keyserver.ubuntu.com:80 \
--recv-keys 5301FA4FD93244FBC6F6149982BB6851C64F6880 && \
echo \
"deb https://ppa.launchpadcontent.net/xtradeb/apps/ubuntu noble main" > \
/etc/apt/sources.list.d/xtradeb.list && \
apt-get update && \ apt-get update && \
DEBIAN_FRONTEND=noninteractive \ DEBIAN_FRONTEND=noninteractive \
apt-get install --no-install-recommends -y \ apt-get install --no-install-recommends -y \
chromium \
dolphin \ dolphin \
firefox \
gwenview \ gwenview \
kde-config-gtk-style \ kde-config-gtk-style \
kdialog \ kdialog \
@ -42,9 +44,12 @@ RUN \
kwrite \ kwrite \
plasma-desktop \ plasma-desktop \
plasma-workspace \ plasma-workspace \
plymouth-theme-kubuntu-logo \
qml-module-qt-labs-platform \ qml-module-qt-labs-platform \
systemsettings && \ systemsettings && \
echo "**** application tweaks ****" && \
sed -i \
's#^Exec=.*#Exec=/usr/local/bin/wrapped-chromium#g' \
/usr/share/applications/chromium.desktop && \
echo "**** kde tweaks ****" && \ echo "**** kde tweaks ****" && \
sed -i \ sed -i \
's/applications:org.kde.discover.desktop,/applications:org.kde.konsole.desktop,/g' \ 's/applications:org.kde.discover.desktop,/applications:org.kde.konsole.desktop,/g' \

4
Jenkinsfile vendored
View File

@ -30,8 +30,8 @@ pipeline {
MULTIARCH='true' MULTIARCH='true'
CI='true' CI='true'
CI_WEB='true' CI_WEB='true'
CI_PORT='3000' CI_PORT='3001'
CI_SSL='false' CI_SSL='true'
CI_DELAY='120' CI_DELAY='120'
CI_DOCKERENV='TZ=US/Pacific' CI_DOCKERENV='TZ=US/Pacific'
CI_AUTH='user:password' CI_AUTH='user:password'

View File

@ -19,8 +19,8 @@ repo_vars:
- MULTIARCH='true' - MULTIARCH='true'
- CI='true' - CI='true'
- CI_WEB='true' - CI_WEB='true'
- CI_PORT='3000' - CI_PORT='3001'
- CI_SSL='false' - CI_SSL='true'
- CI_DELAY='120' - CI_DELAY='120'
- CI_DOCKERENV='TZ=US/Pacific' - CI_DOCKERENV='TZ=US/Pacific'
- CI_AUTH='user:password' - CI_AUTH='user:password'

1
root/defaults/autostart Normal file
View File

@ -0,0 +1 @@
exit 0

View File

@ -1,12 +1,5 @@
#!/bin/bash #!/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
# Disable compositing and screen lock # Disable compositing and screen lock
if [ ! -f $HOME/.config/kwinrc ]; then if [ ! -f $HOME/.config/kwinrc ]; then
kwriteconfig5 --file $HOME/.config/kwinrc --group Compositing --key Enabled false kwriteconfig5 --file $HOME/.config/kwinrc --group Compositing --key Enabled false
@ -14,8 +7,55 @@ fi
if [ ! -f $HOME/.config/kscreenlockerrc ]; then if [ ! -f $HOME/.config/kscreenlockerrc ]; then
kwriteconfig5 --file $HOME/.config/kscreenlockerrc --group Daemon --key Autolock false kwriteconfig5 --file $HOME/.config/kscreenlockerrc --group Daemon --key Autolock false
fi fi
# Power related
setterm blank 0 setterm blank 0
setterm powerdown 0 setterm powerdown 0
# Launch DE # Direcotries
/usr/bin/dbus-launch /usr/bin/startplasma-x11 > /dev/null 2>&1 sudo rm -f /usr/share/dbus-1/system-services/org.freedesktop.UDisks2.service
mkdir -p "${HOME}/.config/autostart" "${HOME}/.XDG" "${HOME}/.local/share/"
chmod 700 "${HOME}/.XDG"
touch "${HOME}/.local/share/user-places.xbel"
# Background perm loop
if [ ! -d $HOME/.config/kde.org ]; then
(
loop_end_time=$((SECONDS + 30))
while [ $SECONDS -lt $loop_end_time ]; do
find "$HOME/.cache" "$HOME/.config" "$HOME/.local" -type f -perm 000 -exec chmod 644 {} + 2>/dev/null
sleep .1
done
) &
fi
# Create startup script if it does not exist (keep in sync with openbox)
STARTUP_FILE="${HOME}/.config/autostart/autostart.desktop"
if [ ! -f "${STARTUP_FILE}" ]; then
echo "[Desktop Entry]" > $STARTUP_FILE
echo "Exec=bash /config/.config/openbox/autostart" >> $STARTUP_FILE
echo "Icon=dialog-scripts" >> $STARTUP_FILE
echo "Name=autostart" >> $STARTUP_FILE
echo "Path=" >> $STARTUP_FILE
echo "Type=Application" >> $STARTUP_FILE
echo "X-KDE-AutostartScript=true" >> $STARTUP_FILE
chmod +x $STARTUP_FILE
fi
# Check for any render nodes
for node in /dev/dri/renderD*; do
if [ -e "$node" ]; then
render_node_exists=true
break
fi
done
# Enable Zink support if detected
if [ "$render_node_exists" = true ] && [ "${DISABLE_ZINK}" == "false" ]; then
export LIBGL_KOPPER_DRI2=1
export MESA_LOADER_DRIVER_OVERRIDE=zink
export GALLIUM_DRIVER=zink
fi
# Stat DE
unset LD_PRELOAD
dbus-launch /usr/bin/startplasma-x11 > /dev/null 2>&1

View File

@ -1,3 +0,0 @@
Package: firefox*
Pin: release o=Ubuntu*
Pin-Priority: -1

View File

@ -0,0 +1,15 @@
#! /bin/bash
BIN=/usr/bin/chromium
# 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
${BIN} --password-store=basic "$@"
else
${BIN} --password-store=basic --no-sandbox --test-type "$@"
fi