I looked through the documentation but didnβt find anything - is there a way to make Shoes display in full screen?
Maybe something like ..
Shoes.app :fullscreen => true do
para "test"
end
In the source code, the following lines mention "full screen mode" (among others):
shoes/app.c:58: app->fullscreen = FALSE;
shoes/native/cocoa.m:851: if (app->fullscreen) {
shoes/native/gtk.c:557: if (app->fullscreen)
shoes/native/cocoa.m:872:shoes_native_app_fullscreen(shoes_app *app, char yn)
shoes/native/windows.c:934: if (app->fullscreen)
shoes/native/windows.c:935: style = WINDOW_STYLE_FULLSCREEN;
.. so that everything seems to be there, is it just that execution :fullscreen => trueseems ineffective?
source
share