From 972c026410532efd2d0474e2d157c6818f24915a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nina=20Chl=C3=B3e=20Kassandra=20Rei=C3=9F?= Date: Wed, 1 Jul 2026 23:14:51 +0200 Subject: [PATCH] Workspaces --- hyprland.lua | 1 + workspaces.lua | 5 +++++ 2 files changed, 6 insertions(+) create mode 100644 workspaces.lua 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, +}