awesome update
This commit is contained in:
parent
d492d090cf
commit
4ca31baa1c
|
@ -224,7 +224,7 @@ end
|
||||||
|
|
||||||
local backlight_widget_type = {
|
local backlight_widget_type = {
|
||||||
async = function (format, warg, callback)
|
async = function (format, warg, callback)
|
||||||
awful.spawn.easy_async("xbacklight ", function (stdout)
|
awful.spawn.easy_async("xbacklight -get", function (stdout)
|
||||||
callback{ round(tonumber(stdout)) }
|
callback{ round(tonumber(stdout)) }
|
||||||
end)
|
end)
|
||||||
end
|
end
|
||||||
|
@ -777,6 +777,8 @@ globalkeys = gears.table.join(
|
||||||
awful.key({ modkey }, "m", function() awful.spawn("mpc toggle") end),
|
awful.key({ modkey }, "m", function() awful.spawn("mpc toggle") end),
|
||||||
awful.key({ modkey }, "]", function() awful.spawn("mpc next") end),
|
awful.key({ modkey }, "]", function() awful.spawn("mpc next") end),
|
||||||
awful.key({ modkey }, "[", function() awful.spawn("mpc prev") end),
|
awful.key({ modkey }, "[", function() awful.spawn("mpc prev") end),
|
||||||
|
awful.key({ modkey, "Shift" }, "t", function() awful.spawn("/home/daan/Scripts/tv.sh") end,
|
||||||
|
{description = "TV Mode"}),
|
||||||
|
|
||||||
awful.key({ modkey, "Control" }, "n",
|
awful.key({ modkey, "Control" }, "n",
|
||||||
function ()
|
function ()
|
||||||
|
@ -809,6 +811,8 @@ globalkeys = gears.table.join(
|
||||||
{description = "show the menubar", group = "launcher"}),
|
{description = "show the menubar", group = "launcher"}),
|
||||||
awful.key({ modkey }, "d", function() rofi_spawn("rofi -show drun -me-select-entry '' -me-accept-entry 'MousePrimary'") end,
|
awful.key({ modkey }, "d", function() rofi_spawn("rofi -show drun -me-select-entry '' -me-accept-entry 'MousePrimary'") end,
|
||||||
{description = "launch rofi", group = "launcher"}),
|
{description = "launch rofi", group = "launcher"}),
|
||||||
|
awful.key({ modkey }, "c", function() rofi_spawn("rofi-pass") end,
|
||||||
|
{description = "launch rofi-pass", group = "launcher"}),
|
||||||
awful.key({ modkey, "Shift" }, "g",
|
awful.key({ modkey, "Shift" }, "g",
|
||||||
function (c)
|
function (c)
|
||||||
rofi_spawn("dmenu_script lutris.sh")
|
rofi_spawn("dmenu_script lutris.sh")
|
||||||
|
|
Loading…
Reference in New Issue