This file contains hidden or 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/env python3 | |
# linux deps: python-gobject gtk3 picom | |
# i3/config: | |
# exec_always --no-startup-id picom -b | |
# for_window [title="MouseGrid"] floating enable, border none | |
import gi | |
gi.require_version('Gtk', '3.0') | |
from gi.repository import Gtk, Gdk, GLib | |
import cairo |
OlderNewer