From 62136f16696ba177db62ef543cf247773b545829 Mon Sep 17 00:00:00 2001 From: Tom Englund Date: Mon, 27 Apr 2026 21:59:45 +0200 Subject: [PATCH] cmake: install the default example hyprland.lua (#14174) install the default lua example aswell. --- CMakeLists.txt | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 0dddcbdc0..06cda39c0 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -629,6 +629,10 @@ install(FILES ${INSTALLABLE_ASSETS} install(FILES ${CMAKE_SOURCE_DIR}/example/hyprland.conf DESTINATION ${CMAKE_INSTALL_DATAROOTDIR}/hypr) +# default lua config +install(FILES ${CMAKE_SOURCE_DIR}/example/hyprland.lua + DESTINATION ${CMAKE_INSTALL_DATAROOTDIR}/hypr) + # LuaLS stubs install(FILES ${CMAKE_SOURCE_DIR}/meta/hl.meta.lua DESTINATION ${CMAKE_INSTALL_DATAROOTDIR}/hypr/stubs)