hyprland.lua now just uses its defaults when no hosts/<hostname>.lua matches, instead of requiring hosts/example.lua. example.lua is kept only as a documented template for contributors.
10 lines
494 B
Lua
10 lines
494 B
Lua
-- example.lua — TEMPLATE for a per-host config file (NOT loaded at runtime).
|
|
--
|
|
-- Hyprland's Lua config only loads hosts/<hostname>.lua matching the current
|
|
-- machine's hostname. If none matches, hyprland.lua simply uses its defaults.
|
|
-- This file is never required; it exists purely as a documented template.
|
|
--
|
|
-- To add your own machine, copy this to hosts/<your-hostname>.lua and fill it
|
|
-- in. The hostname lookup strips any domain suffix (e.g. "laptop.home" -> "laptop").
|
|
|
|
return {}
|