diff --git a/hyprland.lua b/hyprland.lua index 7a37b67..0cb1ffc 100644 --- a/hyprland.lua +++ b/hyprland.lua @@ -3,6 +3,7 @@ local monitor = require("monitor") local background = require("background") local status_bar = require("status_bar") local devices = require("devices") +local workspaces = require("workspaces") -- On event hl.on("hyprland.start", function() diff --git a/workspaces.lua b/workspaces.lua new file mode 100644 index 0000000..8b5d1cd --- /dev/null +++ b/workspaces.lua @@ -0,0 +1,5 @@ + + +return { + start = function() end, +}