Adding some missing tools

This commit is contained in:
Josh.5
2022-01-26 17:39:16 +13:00
parent 552714c75f
commit 7056a225d5
2 changed files with 8 additions and 3 deletions

View File

@@ -71,8 +71,10 @@ RUN \
net-tools \ net-tools \
patch \ patch \
pciutils \ pciutils \
pkg-config \
procps \ procps \
rsync \ rsync \
screen \
sudo \ sudo \
unzip \ unzip \
vim \ vim \
@@ -162,7 +164,6 @@ RUN \
dbus-x11 \ dbus-x11 \
libxcomposite-dev \ libxcomposite-dev \
libxcursor1 \ libxcursor1 \
pkg-config \
x11-xfs-utils \ x11-xfs-utils \
x11vnc \ x11vnc \
xauth \ xauth \

View File

@@ -5,7 +5,7 @@
# File Created: Thursday, 1st January 1970 12:00:00 pm # File Created: Thursday, 1st January 1970 12:00:00 pm
# Author: Console and webGui login account (jsunnex@gmail.com) # Author: Console and webGui login account (jsunnex@gmail.com)
# ----- # -----
# Last Modified: Wednesday, 26th January 2022 3:29:47 pm # Last Modified: Wednesday, 26th January 2022 5:38:23 pm
# Modified By: Console and webGui login account (jsunnex@gmail.com) # Modified By: Console and webGui login account (jsunnex@gmail.com)
### ###
# #
@@ -17,11 +17,15 @@ XDG_RUNTIME_DIR=/run/user/$(id -u ${USER})
XDG_DATA_DIRS="${XDG_DATA_DIRS}:/var/lib/flatpak/exports/share:/home/${USER}/.local/share/flatpak/exports/share" XDG_DATA_DIRS="${XDG_DATA_DIRS}:/var/lib/flatpak/exports/share:/home/${USER}/.local/share/flatpak/exports/share"
export $(dbus-launch) export $(dbus-launch)
# TODO: Set the default background # Set the default background for gnome based desktop
mkdir -p /etc/alternatives
ln -sf /usr/share/backgrounds/steam.jpg /etc/alternatives/desktop-background
# Run the desktop environment in order of priority # Run the desktop environment in order of priority
if [[ -e /usr/bin/cinnamon-session ]]; then if [[ -e /usr/bin/cinnamon-session ]]; then
/usr/bin/cinnamon-session --display=${DISPLAY} /usr/bin/cinnamon-session --display=${DISPLAY}
elif [[ -e /usr/bin/mate-session ]]; then
/usr/bin/mate-session
elif [[ -e /usr/bin/startplasma-x11 ]]; then elif [[ -e /usr/bin/startplasma-x11 ]]; then
/usr/bin/startplasma-x11 /usr/bin/startplasma-x11
elif [[ -e /usr/bin/startxfce4 ]]; then elif [[ -e /usr/bin/startxfce4 ]]; then