Skip to content

Instantly share code, notes, and snippets.

@arn-ob
Created September 3, 2018 10:19
Show Gist options
  • Select an option

  • Save arn-ob/e548c91231517cbb0f723cafc4319a66 to your computer and use it in GitHub Desktop.

Select an option

Save arn-ob/e548c91231517cbb0f723cafc4319a66 to your computer and use it in GitHub Desktop.
Run FullScreen GUI App At Linux
#!/usr/bin/env python
import gtk
import webkit
import gobject
gobject.threads_init()
win = gtk.Window()
bro = webkit.WebView()
bro.open("http://www.google.com")
win.add(bro)
win.show_all()
win.fullscreen()
gtk.main()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment