diff options
| author | Reiner Herrmann <reiner@reiner-h.de> | 2017-10-07 11:28:26 +0200 |
|---|---|---|
| committer | Reiner Herrmann <reiner@reiner-h.de> | 2017-10-07 11:28:26 +0200 |
| commit | 4e7f122bfdf5dde8190bb2e11451ff405700c3c0 (patch) | |
| tree | bd2a3566d694d3ecbbf96819ec63a620ab8a2514 /awesome/rc.lua | |
| parent | c4dee290fcaaf1470dc584f0f7e6cb5c944fcb87 (diff) | |
awesome: replace deprecated awful.util.spawn call
Diffstat (limited to 'awesome/rc.lua')
| -rw-r--r-- | awesome/rc.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/awesome/rc.lua b/awesome/rc.lua index cb15831..598f116 100644 --- a/awesome/rc.lua +++ b/awesome/rc.lua @@ -364,7 +364,7 @@ globalkeys = gears.table.join( -- Prompt --awful.key({ modkey }, "r", function () awful.screen.focused().mypromptbox:run() end, - awful.key({ modkey }, "r", function () awful.util.spawn("dmenu_run -i -p 'Run command:' -nb '" .. beautiful.bg_normal .. "' -nf '" .. beautiful.fg_normal .. "' -sb '" .. beautiful.bg_focus .. "' -sf '" .. beautiful.fg_focus .. "'") end, + awful.key({ modkey }, "r", function () awful.spawn("dmenu_run -i -p 'Run command:' -nb '" .. beautiful.bg_normal .. "' -nf '" .. beautiful.fg_normal .. "' -sb '" .. beautiful.bg_focus .. "' -sf '" .. beautiful.fg_focus .. "'") end, {description = "run prompt", group = "launcher"}), awful.key({ modkey }, "x", |
