11 lines
304 B
Bash
Executable file
11 lines
304 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# Adjust Geometry for Desktop:
|
|
#/usr/bin/vncserver :1 -geometry 1280x800 -depth 24
|
|
#/usr/bin/vncserver :1 -geometry 1024x768 -depth 24
|
|
# Reduced windows ...
|
|
/usr/bin/vncserver :1 -geometry 980x650 -depth 24
|
|
|
|
# Lanzamos una BASH para esperar comandos y evitar cerrar el contenedor
|
|
/bin/bash
|
|
|