Merge pull request #9 from mikenye/dev

Allow maximize/zoom of all windows
This commit is contained in:
Mike
2020-04-14 19:08:47 +08:00
committed by GitHub

View File

@@ -9,11 +9,16 @@ RUN set -x && \
locales \
software-properties-common \
&& \
echo "========== Install Picard ==========" && \
add-apt-repository -y ppa:musicbrainz-developers/stable && \
apt-get update && \
apt-get install -y \
picard \
&& \
echo "========== Update OpenBox Config ==========" && \
sed -i 's/<application type="normal">/<application type="normal" title="MusicBrainz Picard">/' /etc/xdg/openbox/rc.xml && \
sed -i '/<decor>no<\/decor>/d' /etc/xdg/openbox/rc.xml && \
echo "========== Final Config ==========" && \
locale-gen en_US.UTF-8 && \
mkdir -p /tmp/run/user/app && \
chmod 0700 /tmp/run/user/app && \