Merge branch 'main' into testing

This commit is contained in:
Kyle Gospodnetich 2024-09-16 09:53:34 -07:00
commit e1fbb541d0
4 changed files with 7 additions and 10 deletions

View File

@ -358,6 +358,7 @@ RUN --mount=type=cache,dst=/var/cache/rpm-ostree \
python3-pip \ python3-pip \
libadwaita \ libadwaita \
duperemove \ duperemove \
cpulimit \
sqlite \ sqlite \
xwininfo \ xwininfo \
xrandr \ xrandr \
@ -587,6 +588,7 @@ RUN --mount=type=cache,dst=/var/cache/rpm-ostree \
gnome-extensions-app \ gnome-extensions-app \
gnome-terminal \ gnome-terminal \
gnome-terminal-nautilus \ gnome-terminal-nautilus \
gnome-system-monitor \
gnome-initial-setup \ gnome-initial-setup \
gnome-shell-extension-background-logo \ gnome-shell-extension-background-logo \
gnome-shell-extension-apps-menu && \ gnome-shell-extension-apps-menu && \
@ -597,7 +599,6 @@ RUN --mount=type=cache,dst=/var/cache/rpm-ostree \
curl -Lo /usr/share/thumbnailers/exe-thumbnailer.thumbnailer https://raw.githubusercontent.com/jlu5/icoextract/master/exe-thumbnailer.thumbnailer && \ curl -Lo /usr/share/thumbnailers/exe-thumbnailer.thumbnailer https://raw.githubusercontent.com/jlu5/icoextract/master/exe-thumbnailer.thumbnailer && \
unzip /tmp/tilingshell/tilingshell@ferrarodomenico.com.zip -d /usr/share/gnome-shell/extensions/tilingshell@ferrarodomenico.com && \ unzip /tmp/tilingshell/tilingshell@ferrarodomenico.com.zip -d /usr/share/gnome-shell/extensions/tilingshell@ferrarodomenico.com && \
rm -rf /tmp/tilingshell && \ rm -rf /tmp/tilingshell && \
sed -i 's@\[Desktop Entry\]@\[Desktop Entry\]\nNoDisplay=true@g' /usr/share/applications/org.gnome.SystemMonitor.desktop && \
systemctl enable dconf-update.service \ systemctl enable dconf-update.service \
; fi && \ ; fi && \
/usr/libexec/containerbuild/cleanup.sh && \ /usr/libexec/containerbuild/cleanup.sh && \

View File

@ -1,3 +1,7 @@
<p align="center">
<img src="convergence_wallpaper.png?raw=true" alt="Bazzite"/>
</p>
# Press Kit # Press Kit
Thanks for generating content about about Bazzite and Universal Blue! This document will explain how to use the brand and terminology used by the project. Thanks for generating content about about Bazzite and Universal Blue! This document will explain how to use the brand and terminology used by the project.

View File

@ -309,7 +309,7 @@ fi
cmd rm -f "$DUPEREMOVE_DB" cmd rm -f "$DUPEREMOVE_DB"
fi fi
# shellcheck disable=SC2086 # shellcheck disable=SC2086
cmd duperemove --hashfile="$DUPEREMOVE_DB" --exclude="$TARGET/$RMLINT_DB" --exclude="$TARGET/$DUPEREMOVE_DB" --exclude="$TARGET/@swapfile/swapfile" ${DUPEREMOVE_ARGS} "$TARGET"/ & cmd cpulimit -l 50 nice -19 ionice -c 3 duperemove --cpu-threads=2 --io-threads=2 --hashfile="$DUPEREMOVE_DB" --exclude="$TARGET/$RMLINT_DB" --exclude="$TARGET/$DUPEREMOVE_DB" --exclude="$TARGET/@swapfile/swapfile" ${DUPEREMOVE_ARGS} "$TARGET"/ &
worker_waiter worker_waiter
cmd cp -a "$DUPEREMOVE_DB" "$TARGET"/ cmd cp -a "$DUPEREMOVE_DB" "$TARGET"/
cmd rm -f "$DUPEREMOVE_DB" cmd rm -f "$DUPEREMOVE_DB"

View File

@ -6,11 +6,3 @@ EnvironmentFile=-/etc/conf.d/btrfs-dedup
ExecStart=/usr/bin/btrfs-dedup %f ExecStart=/usr/bin/btrfs-dedup %f
ExecReload=/usr/bin/btrfs-dedup --powerchange ExecReload=/usr/bin/btrfs-dedup --powerchange
PIDFile=/run/btrfs-dedup/%i.pid PIDFile=/run/btrfs-dedup/%i.pid
Nice=19
CPUSchedulingPolicy=batch
IOSchedulingClass=best-effort
IOSchedulingPriority=7
OOMScoreAdjust=1000
CPUWeight=30
CPUQuota=100%
IOWeight=30