Moved hyprland config to its own folder and created a session file specifically for hydro-os config hyprland.
All checks were successful
bluebuild / Build Custom Image (recipe.yml) (push) Successful in 23s

This commit is contained in:
2025-05-14 15:39:28 -04:00
parent c4fbd9fa75
commit 2a268978a7
26 changed files with 48 additions and 40 deletions

View File

@@ -0,0 +1,14 @@
#!/usr/bin/env lua
local menu = require("menu")
local executable = {
["Shutdown"] = "/usr/share/hypr-hydro-os/scripts/hypr_power/hypr_shutdown",
["Reboot"] = "/usr/share/hypr-hydro-os/scripts/hypr_power/hypr_reboot",
["Log out"] = "/usr/share/hypr-hydro-os/scripts/hypr_power/hypr_logout",
["Cancel"] = "",
}
local options = { "Shutdown", "Reboot", "Log out", "Cancel" }
local s = menu:bring_menu("Power menu", options)
os.execute(executable[s])