Created
February 13, 2012 08:55
-
-
Save unhammer/1815146 to your computer and use it in GitHub Desktop.
toggle gtk window decorations
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /usr/bin/python2 | |
import gtk.gdk | |
w = gtk.gdk.window_foreign_new( gtk.gdk.get_default_root_window().property_get("_NET_ACTIVE_WINDOW")[2][0] ) | |
w.set_decorations( (w.get_decorations()+1)%2 ) # toggle between 0 and 1 | |
gtk.gdk.window_process_all_updates() | |
gtk.gdk.flush() | |
# now bind this to super-r or something |
That's exactly what I needed, thanks.
Thanks!
BTW if it doesn't work on some specific apps, it can be solved with this manual
- open
/etc/gdm3/daemon.conf
- uncomment
WaylandEnable=false
- reboot
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks 😄