Fix leave menu shutdown and reboot

This commit is contained in:
Alice Gaudon 2019-07-24 14:27:10 +02:00
parent 93009fb6cb
commit afce173903
2 changed files with 3 additions and 3 deletions

View File

@ -20,5 +20,5 @@ By default, Simple Awesome uses
- Add a media control widget
- Manage workspaces
- Improve "leave menu"'s design
- Modify "start menu"
- Modify "start menu", make everything work
- Make "start menu" and "leave menu" not sticky (they currently stay open and focus even when clicking outside)

4
rc.lua
View File

@ -142,12 +142,12 @@ lock_icon = awesome.load_image(awful.util.getdir("config") .. "/icons/lock.svg")
shutdownMenu_items = {
{ "Shutdown",
function()
awful.spawn('sudo /sbin/shutdown -h now')
os.execute('shutdown now')
end,
shutdown_icon },
{ "Restart",
function()
awful.spawn('sudo /sbin/shutdown -r now')
os.execute('shutdown -r now')
end,
restart_icon },
{ "Logout",