For a scientific experiment I wrote a turtle.py
, which opens a 800x480 window and draws a slowly growing black dot. The turtle.py
is started with C:\Users\kaza>python C:\Users\kaza\Desktop\Python_scripts\turtle.py "black" 900 40 1 20 20 10 0 0 30 10
in the cmd. black
and the numbers after the command are parameters of the dot, which regulate parameters of the dot like growing speed, maxsize etc.
If I execute the cmd the window opens and the turtle.py
starts to draw. the size of the screen is 800x480, so the window covers the full screen. The only thing that bothers me is the menu bar. By clicking on it and choosing "undecorate" I can make it disappear but I was not able to find a way starting the window undecorated. The turtle.py
should start simultaneously on 12 raspberrys and it is impossible to run to each raspberry and undecorate the window.
I already tried to modify the rc.xml
of openbox but nothing changed. Is there maybe a command for the cmd, which starts the turtle.py
automatically in an undecorated window?