hypr: make the per-host config lookup case-insensitive
The hosts files were written capitalized (Rutherford.lua, Chester.lua) but the require uses the hostname exactly as `hostname` prints it — lowercase — so on a case-sensitive filesystem the lookup missed and pcall silently swallowed it. The per-host monitor overrides therefore never loaded on either machine. Normalize the hostname to lowercase and name the files in lowercase so any casing matches.
This commit is contained in:
parent
f522222836
commit
06de4dcb8a
4 changed files with 2 additions and 2 deletions
9
hypr/hosts/rutherford.lua
Normal file
9
hypr/hosts/rutherford.lua
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
-- Host-specific overrides: Rutherford (desktop PC)
|
||||
-- Loaded automatically by hyprland.lua via hostname detection.
|
||||
|
||||
hl.monitor({
|
||||
output = "DP-1",
|
||||
mode = "2560x1440@74.97",
|
||||
position = "0x0",
|
||||
scale = 1,
|
||||
})
|
||||
Loading…
Add table
Add a link
Reference in a new issue