Skip to content

Commit c792f41

Browse files
committed
fixes #75, fixes #74 make 16k the new max and default to 1 workspace in openbox
1 parent e317985 commit c792f41

5 files changed

Lines changed: 5 additions & 3 deletions

File tree

Dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -223,6 +223,7 @@ RUN \
223223
-e '/debian-menu/d' \
224224
-e 's|</applications>| <application class="*"><maximized>yes</maximized></application>\n</applications>|' \
225225
-e 's|</keyboard>| <keybind key="C-S-d"><action name="ToggleDecorations"/></keybind>\n</keyboard>|' \
226+
-e 's|<number>4</number>|<number>1</number>|' \
226227
/etc/xdg/openbox/rc.xml && \
227228
echo "**** user perms ****" && \
228229
sed -e 's/%sudo ALL=(ALL:ALL) ALL/%sudo ALL=(ALL:ALL) NOPASSWD: ALL/g' \

Dockerfile.aarch64

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -221,6 +221,7 @@ RUN \
221221
-e '/debian-menu/d' \
222222
-e 's|</applications>| <application class="*"><maximized>yes</maximized></application>\n</applications>|' \
223223
-e 's|</keyboard>| <keybind key="C-S-d"><action name="ToggleDecorations"/></keybind>\n</keyboard>|' \
224+
-e 's|<number>4</number>|<number>1</number>|' \
224225
/etc/xdg/openbox/rc.xml && \
225226
echo "**** user perms ****" && \
226227
sed -e 's/%sudo ALL=(ALL:ALL) ALL/%sudo ALL=(ALL:ALL) NOPASSWD: ALL/g' \

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ All application settings are passed via environment variables:
4343
| DISABLE_ZINK | Do not set the Zink environment variables if a video card is detected (userspace applications will use CPU rendering) |
4444
| WATERMARK_PNG | Full path inside the container to a watermark png IE `/usr/share/selkies/www/icon.png` |
4545
| WATERMARK_LOCATION | Where to paint the image over the stream integer options below |
46-
| MAX_RES | Pass a larger maximum resolution for the container default is 8k `7680x4320` |
46+
| MAX_RES | Pass a larger maximum resolution for the container default is 16k `15360x8640` |
4747

4848
* 1 - Top Left
4949
* 2 - Top Right

readme-vars.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ full_custom_readme: |
4747
| DISABLE_ZINK | Do not set the Zink environment variables if a video card is detected (userspace applications will use CPU rendering) |
4848
| WATERMARK_PNG | Full path inside the container to a watermark png IE `/usr/share/selkies/www/icon.png` |
4949
| WATERMARK_LOCATION | Where to paint the image over the stream integer options below |
50-
| MAX_RES | Pass a larger maximum resolution for the container default is 8k `7680x4320` |
50+
| MAX_RES | Pass a larger maximum resolution for the container default is 16k `15360x8640` |
5151
5252
* 1 - Top Left
5353
* 2 - Top Right

root/etc/s6-overlay/s6-rc.d/svc-xorg/run

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ fi
88
if [ ! -z ${DRINODE+x} ]; then
99
VFBCOMMAND="-vfbdevice ${DRINODE}"
1010
fi
11-
DEFAULT_RES="7680x4320"
11+
DEFAULT_RES="15360x8640"
1212
if [ ! -z ${MAX_RES+x} ]; then
1313
DEFAULT_RES="${MAX_RES}"
1414
fi

0 commit comments

Comments
 (0)