InfoScreen/Notizen
Aus LaborWiki
<-- InfoScreen
Chrom(e|ium)
- http://peter.sh/experiments/chromium-command-line-switches/
- http://www.chromium.org/developers/how-tos/run-chromium-with-flags
- xinit /usr/bin/google-chrome --window-size=768,1024 --kiosk --disable-web-security $URL -- -nocursor
WebKit GTK+/DirectFB
export PREFIX=/usr/gtkdfb export LD_LIBRARY_PATH=$PREFIX/lib export PKG_CONFIG_PATH=$LD_LIBRARY_PATH/pkgconfig export CFLAGS="-g" wget http://cairographics.org/releases/cairo-1.10.2.tar.gz tar -xavf cairo-1.10.2.tar.gz cd cairo-1.10.2 ./configure --prefix=$PREFIX --enable-directfb --disable-xlib --disable-win32 make sudo make install cd .. wget http://ftp.acc.umu.se/pub/GNOME/sources/pango/1.29/pango-1.29.4.tar.bz2 tar -xavf pango-1.29.4.tar.bz2 cd pango-1.2.9.4 ./configure --prefix=$PREFIX --without-x make sudo make install cd .. wget http://ftp.acc.umu.se/pub/GNOME/sources/gtk+/2.24/gtk+-2.24.8.tar.bz2 tar -xavf gtk+-2.24.8.tar.bz2 cd gtk+-2.24.8 ./configure --prefix=$PREFIX --with-gdktarget=directfb --without-x make sudo make install cd .. wget http://builds.nightly.webkit.org/files/trunk/src/WebKit-r100547.tar.bz2 tar -xavf WebKit-r100547.tar.bz2 cd WebKit-r100547 Tools/Scripts/build-webkit --gtk --no-datalist --no-channel-messaging --no-filters \ --no-details --no-fullscreen-api --no-geolocation --no-icon-database --no-inspector \ --no-javascript-debugger --no-mathml --no-meter-tag --no-netscape-plugin \ --no-progress-tag --no-shared-workers --no-svg --no-svg-fonts --no-video \ --no-web-audio --no-workers --no-xslt --no-webkit2 \ --with-target=directfb --with-gtk=2.0