[SCRIPT] Updated
This commit is contained in:
+26
-18
@@ -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()
|
||||
|
||||
Reference in New Issue
Block a user