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 |
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
| app = "<name>" | |
| primary_region = "cdg" | |
| kill_timeout = 5 | |
| [build] | |
| # NOTE: Rootless avoids a hard port-22 collision that breaks Fly’s own SSH | |
| image = "docker.gitea.com/gitea:1.25-rootless" | |
| [env] |
OlderNewer