From db004eee6479303b6c90d01006ed1d09d1b72831 Mon Sep 17 00:00:00 2001 From: end-4 <97237370+end-4@users.noreply.github.com> Date: Thu, 15 Aug 2024 20:54:15 +0700 Subject: [PATCH] fix "ReferenceError: Hyprland is not defined" --- .config/ags/variables.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.config/ags/variables.js b/.config/ags/variables.js index cc7ad76e6..bf6a9ff6f 100644 --- a/.config/ags/variables.js +++ b/.config/ags/variables.js @@ -1,8 +1,8 @@ - const { Gdk, Gtk } = imports.gi; import App from 'resource:///com/github/Aylur/ags/app.js' -import Variable from 'resource:///com/github/Aylur/ags/variable.js'; +import Hyprland from 'resource:///com/github/Aylur/ags/service/hyprland.js'; import Mpris from 'resource:///com/github/Aylur/ags/service/mpris.js'; +import Variable from 'resource:///com/github/Aylur/ags/variable.js'; import * as Utils from 'resource:///com/github/Aylur/ags/utils.js'; const { exec, execAsync } = Utils;