fix trailing whitespace and mixed indent

This commit is contained in:
Dario Gjorgjevski 2015-08-16 05:36:09 +02:00
parent 390203892a
commit 75c3b81654
1 changed files with 10 additions and 10 deletions

View File

@ -29,8 +29,8 @@ local function worker (args)
-- Mouse bindings
kbdlayout.widget:buttons(awful.util.table.join(
awful.button({ }, 1, function () kbdlayout.next() end),
awful.button({ }, 3, function () kbdlayout.prev() end)))
awful.button({ }, 1, function () kbdlayout.next() end),
awful.button({ }, 3, function () kbdlayout.prev() end)))
local function run_settings (layout, variant)
widget = kbdlayout.widget
@ -43,7 +43,7 @@ local function worker (args)
local status = read_pipe('setxkbmap -query')
run_settings(string.match(status, "layout:%s*([^\n]*)"),
string.match(status, "variant:%s*([^\n]*)"))
string.match(status, "variant:%s*([^\n]*)"))
end
function kbdlayout.set (i)
@ -51,15 +51,15 @@ local function worker (args)
local to_execute = 'setxkbmap ' .. layouts[idx].layout
if add_us_secondary then
to_execute = to_execute .. ",us"
to_execute = to_execute .. ",us"
end
if layouts[idx].variant then
to_execute = to_execute .. ' ' .. layouts[idx].variant
to_execute = to_execute .. ' ' .. layouts[idx].variant
end
if os.execute(to_execute) then
run_settings(layouts[idx].layout, layouts[idx].variant)
run_settings(layouts[idx].layout, layouts[idx].variant)
end
end