From d0cfa59fb080bfaa36b06784d2363d92d7a11107 Mon Sep 17 00:00:00 2001 From: Jeena Date: Mon, 24 Aug 2026 10:05:13 +0900 Subject: [PATCH] chore(hosts): drop redundant return {} from host lua files require() only needs the module's side effects; the returned value is ignored by hyprland.lua. Chester.lua and example.lua now match Rutherford.lua in ending after their config statements. --- hypr/hosts/Chester.lua | 2 -- hypr/hosts/example.lua | 2 -- 2 files changed, 4 deletions(-) diff --git a/hypr/hosts/Chester.lua b/hypr/hosts/Chester.lua index a8a67a4..b65fdb3 100644 --- a/hypr/hosts/Chester.lua +++ b/hypr/hosts/Chester.lua @@ -9,5 +9,3 @@ hl.monitor({ position = "0x0", scale = 1.5, }) - -return {} diff --git a/hypr/hosts/example.lua b/hypr/hosts/example.lua index 55456f9..829a8b5 100644 --- a/hypr/hosts/example.lua +++ b/hypr/hosts/example.lua @@ -6,5 +6,3 @@ -- -- To add your own machine, copy this to hosts/.lua and fill it -- in. The hostname lookup strips any domain suffix (e.g. "laptop.home" -> "laptop"). - -return {}