Skip to content

Instantly share code, notes, and snippets.

@farhaven
Created March 3, 2010 10:57
Show Gist options
  • Save farhaven/320522 to your computer and use it in GitHub Desktop.
Save farhaven/320522 to your computer and use it in GitHub Desktop.
awful.key({ }, "XF86PowerOff", function ()
local c = client.get()
for _, v in ipairs(c) do
if v.name == "Quick-settings" then
v:kill()
return
end
end
awful.util.spawn("phoneui-quick-settings")
end)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment