All checks were successful
bluebuild / Build Custom Image (recipe.yml) (push) Successful in 57s
15 lines
438 B
Lua
15 lines
438 B
Lua
#!/usr/bin/env lua
|
|
local menu = require("menu")
|
|
local executable = {
|
|
["Shutdown"] = "/usr/share/hyprland/scripts/hypr_power/hypr_shutdown",
|
|
["Reboot"] = "/usr/share/hyprland/scripts/hypr_power/hypr_reboot",
|
|
["Log out"] = "/usr/share/hyprland/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])
|