Skip to content

Commit

Permalink
fix: module lgi.* doesn't exist
Browse files Browse the repository at this point in the history
  • Loading branch information
aarondill committed Aug 9, 2024
1 parent 39bed0d commit ab1dfd8
Show file tree
Hide file tree
Showing 10 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions configuration/apps/run_on_startup.lua
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
local require = require("util.rel_require")

local GLib = require("lgi.GLib")
local Gio = require("lgi.Gio")
local GLib = require("lgi").GLib
local Gio = require("lgi").Gio
local config_file_dir = require(..., "conffile_dir") ---@module "configuration.apps.conffile_dir"
local gfile = require("gears.filesystem")
local path = require("util.path")
Expand Down
2 changes: 1 addition & 1 deletion configuration/environment.lua
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
local gfile = require("gears.filesystem")
local glib = require("lgi.GLib")
local glib = require("lgi").GLib
local handle_error = require("util.handle_error")
local path = require("util.path")

Expand Down
2 changes: 1 addition & 1 deletion configuration/keys/global.lua
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
local require = require("util.rel_require")

local Gio = require("lgi.Gio")
local Gio = require("lgi").Gio
local aclient = require("awful.client")
local alayout = require("awful.layout")
local apps = require("configuration.apps")
Expand Down
2 changes: 1 addition & 1 deletion module/git-submodule.lua
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
local Gio = require("lgi.Gio")
local Gio = require("lgi").Gio
local gfile = require("gears.filesystem")
local notifs = require("util.notifs")

Expand Down
2 changes: 1 addition & 1 deletion module/lastlog.lua
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
local GLib = require("lgi.GLib")
local GLib = require("lgi").GLib
local gstring = require("gears.string")
local notifs = require("util.notifs")
local spawn = require("util.spawn")
Expand Down
2 changes: 1 addition & 1 deletion util/awesome/widgets.lua
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
local GLib = require("lgi.GLib")
local GLib = require("lgi").GLib
local abutton = require("awful.button")
local bind = require("util.bind")
local clickable_container = require("widget.material.clickable-container")
Expand Down
2 changes: 1 addition & 1 deletion util/file/sync/ls.lua
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
local Gio = require("lgi.Gio")
local Gio = require("lgi").Gio
local new_file_for_path = require("util.file.new_file_for_path")
local path = require("util.path")
---@param filepath string|GFile
Expand Down
2 changes: 1 addition & 1 deletion util/file/write_async.lua
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
local GLib = require("lgi.GLib")
local GLib = require("lgi").GLib
local new_file_for_path = require("util.file.new_file_for_path")

--- Replace a file content or create a new one - Async :)
Expand Down
2 changes: 1 addition & 1 deletion util/file/write_outputstream.lua
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
local GLib = require("lgi.GLib")
local GLib = require("lgi").GLib
local assertions = require("util.types.assertions")

--- Write to a stream - async
Expand Down
2 changes: 1 addition & 1 deletion widget/battery/dbus.lua
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
local Gio = require("lgi.Gio")
local Gio = require("lgi").Gio
local await = require("await")
local parallel_async = require("util.parallel_async")
local properties = require("util.dbus.properties")
Expand Down

0 comments on commit ab1dfd8

Please sign in to comment.