[SCRIPT] Updated

This commit is contained in:
t
2025-03-31 20:14:11 +02:00
parent 810f54cb65
commit 314a27eb42
472 changed files with 11721 additions and 921 deletions
+26 -18
View File
@@ -1,15 +1,21 @@
from check_version import check_version
from ignis.utils import Utils
from ignis.app import IgnisApp
from ignis.services.wallpaper import WallpaperService
from modules import (
Bar,
ControlCenter,
Launcher,
NotificationPopup,
OSD,
Powermenu,
Settings,
)
check_version()
app = IgnisApp.get_default()
WallpaperService.get_default()
from ignis.utils import Utils # noqa: E402
from ignis.app import IgnisApp # noqa: E402
from modules.control_center import control_center # noqa: E402
from modules.bar import bar # noqa: E402
from modules.notification_popup import notification_popup # noqa: E402
from modules.osd import OSD # noqa: E402
from modules.powermenu import powermenu # noqa: E402
from modules.launcher import launcher # noqa: E402
app.add_icons(f"{Utils.get_current_dir()}/icons")
app.apply_css(Utils.get_current_dir() + "/style.scss")
Utils.exec_sh("gsettings set org.gnome.desktop.interface gtk-theme Material")
Utils.exec_sh("gsettings set org.gnome.desktop.interface icon-theme Papirus")
@@ -17,16 +23,18 @@ Utils.exec_sh(
'gsettings set org.gnome.desktop.interface font-name "JetBrains Mono Regular 11"'
)
Utils.exec_sh("hyprctl reload")
app = IgnisApp.get_default()
app.apply_css(Utils.get_current_dir() + "/style.scss")
control_center()
ControlCenter()
for monitor in range(Utils.get_n_monitors()):
bar(monitor)
launcher()
for monitor in range(Utils.get_n_monitors()):
notification_popup(monitor)
Bar(monitor)
powermenu()
for monitor in range(Utils.get_n_monitors()):
NotificationPopup(monitor)
Launcher()
Powermenu()
OSD()
Settings()