From 6a6e9ff4cc2168d4fb0b6c44762eeedf7219f2e9 Mon Sep 17 00:00:00 2001 From: Leontiy Volodin Date: Thu, 29 Dec 2022 17:50:13 +0300 Subject: [PATCH] Fix howdy-gtk startup Gtk couldn't be initialized --- howdy-gtk/src/init.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/howdy-gtk/src/init.py b/howdy-gtk/src/init.py index 01a7bb3..a4a72d3 100755 --- a/howdy-gtk/src/init.py +++ b/howdy-gtk/src/init.py @@ -2,4 +2,6 @@ # Opens auth ui if requested, otherwise starts normal ui import sys +import os +os.system("xauth generate :0 .") if "--start-auth-ui" in sys.argv: -- libgit2 1.3.2