|
23 | 23 |
|
24 | 24 | from pathlib import Path |
25 | 25 | from material_color_utilities_python import * |
26 | | - |
27 | 26 | from gi.repository import Gtk, Gdk, Gio, Adw, GLib, Xdp, XdpGtk4 |
28 | 27 |
|
| 28 | +from gradience.backend.css_parser import parse_css |
| 29 | +from gradience.backend.models.preset import Preset, presets_dir |
| 30 | +from gradience.backend.utils.common import to_slug_case, buglog, run_command |
| 31 | +from gradience.backend.constants import * |
| 32 | + |
29 | 33 | from gradience.frontend.views.main_window import GradienceMainWindow |
| 34 | +from gradience.frontend.views.plugins_list import GradiencePluginsList |
30 | 35 | from gradience.frontend.views.welcome_window import GradienceWelcomeWindow |
31 | | -from gradience.frontend.dialogs.app_type_dialog import GradienceAppTypeDialog |
32 | | -from gradience.frontend.widgets.custom_css_group import GradienceCustomCSSGroup |
33 | 36 | from gradience.frontend.views.presets_manager_window import GradiencePresetWindow |
34 | 37 | from gradience.frontend.views.preferences_window import GradiencePreferencesWindow |
35 | | -from gradience.backend.css_parser import parse_css |
36 | | -from gradience.backend.utils.common import to_slug_case, buglog, run_command |
37 | | -from gradience.backend.models.preset import Preset, presets_dir |
| 38 | + |
| 39 | +from gradience.frontend.dialogs.app_type_dialog import GradienceAppTypeDialog |
| 40 | +from gradience.frontend.widgets.custom_css_group import GradienceCustomCSSGroup |
| 41 | + |
38 | 42 | from gradience.frontend.settings_schema import settings_schema |
39 | | -from gradience.frontend.views.plugins_list import GradiencePluginsList |
40 | | -from gradience.backend.constants import ( |
41 | | - rootdir, |
42 | | - app_id, |
43 | | - rel_ver, |
44 | | - version, |
45 | | - bugtracker_url, |
46 | | - help_url, |
47 | | - project_url, |
48 | | -) |
49 | 43 |
|
50 | 44 |
|
51 | 45 | class GradienceApplication(Adw.Application): |
|
0 commit comments