Skip to content

Commit 85f1649

Browse files
author
mirkobrombin
committed
do not set dark theme by default
1 parent 35b7acf commit 85f1649

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

easyterm/easyterm.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ def __init__(self, cwd:str="", command:list=[], env:list=[], actions:list=[], *a
6262
super().__init__()
6363
self.set_title(CONF_NAME)
6464
self.set_default_size(800, 450)
65-
self.set_dark_theme()
65+
# self.set_dark_theme()
6666

6767
self.add(self.box)
6868
self.box.pack_start(self.headerbar, False, False, 0)
@@ -105,6 +105,7 @@ def __init__(self, cwd:str="", command:list=[], env:list=[], actions:list=[], *a
105105
self.window.show_all()
106106
self.window.connect("delete-event", Gtk.main_quit)
107107
Gtk.main()
108+
sys.exit()
108109

109110
class EasyTerm(Gtk.Application):
110111
def __init__(self, cwd:str="", command:list=[], env:list=[], actions:list=[], *args, **kwds):

0 commit comments

Comments
 (0)