Awesome WM: Выключение компа в заданное время
Code
-- Выключение компа по установленному времени
function shutdown_time()
    awful.prompt.run {
        prompt       = '<b>(часы:минуты) Name URL: </b>',
        bg_cursor    = '#FFFF00',
        textbox      = mouse.screen.mypromptbox.widget,
        exe_callback = function(input)
            if not input or #input == 0 then return end
            naughty.notify{ text = 'Comp is Shutdown at ' .. input .. '\n' .. 'Use shutdown -c  to Сancel', timeout = 0, hover_timeout = 0.1 }
                awful.spawn.with_shell('shutdown -P ' .. input)         
            end
                    }
end