Skip to content

Commit c1d10a2

Browse files
committed
#111 fix decor handling bump selkies
1 parent 67ecd72 commit c1d10a2

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ RUN \
1616
https://github.com/selkies-project/selkies.git \
1717
/src && \
1818
cd /src && \
19-
git checkout -f fe93efd4c59aed20ede8562b3b9d9e815443f097
19+
git checkout -f 3a7d4d4ee868c85af205d786455ece6a2d4a8935
2020

2121
RUN \
2222
echo "**** build shared core library ****" && \
@@ -181,7 +181,7 @@ RUN \
181181
| awk '/tag_name/{print $4;exit}' FS='[""]') && \
182182
curl -o \
183183
/tmp/selkies.tar.gz -L \
184-
"https://github.com/selkies-project/selkies/archive/fe93efd4c59aed20ede8562b3b9d9e815443f097.tar.gz" && \
184+
"https://github.com/selkies-project/selkies/archive/3a7d4d4ee868c85af205d786455ece6a2d4a8935.tar.gz" && \
185185
cd /tmp && \
186186
tar xf selkies.tar.gz && \
187187
cd selkies-* && \

Dockerfile.aarch64

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ RUN \
1616
https://github.com/selkies-project/selkies.git \
1717
/src && \
1818
cd /src && \
19-
git checkout -f fe93efd4c59aed20ede8562b3b9d9e815443f097
19+
git checkout -f 3a7d4d4ee868c85af205d786455ece6a2d4a8935
2020

2121
RUN \
2222
echo "**** build shared core library ****" && \
@@ -179,7 +179,7 @@ RUN \
179179
| awk '/tag_name/{print $4;exit}' FS='[""]') && \
180180
curl -o \
181181
/tmp/selkies.tar.gz -L \
182-
"https://github.com/selkies-project/selkies/archive/fe93efd4c59aed20ede8562b3b9d9e815443f097.tar.gz" && \
182+
"https://github.com/selkies-project/selkies/archive/3a7d4d4ee868c85af205d786455ece6a2d4a8935.tar.gz" && \
183183
cd /tmp && \
184184
tar xf selkies.tar.gz && \
185185
cd selkies-* && \

root/etc/s6-overlay/s6-rc.d/init-selkies-config/run

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ if [[ ${DISABLE_MOUSE_BUTTONS,,} == "true" ]]; then
146146
fi
147147
if [[ ! -z ${NO_DECOR+x} ]]; then
148148
echo "[ls.io-init] Removing window decorations"
149-
sed -i '/<application class="\*">/a \ <decor>no</decor>' "$SYS_RC_XML"
149+
sed -i 's/<application class="\*">/&<decor>no<\/decor>/' "$SYS_RC_XML"
150150
fi
151151
if [[ ! -z ${NO_FULL+x} ]]; then
152152
echo "[ls.io-init] Disabling maximization"

0 commit comments

Comments
 (0)