Added new binds

This commit is contained in:
2021-08-08 14:17:06 -07:00
parent e621eafdf5
commit ceaf633c43
3 changed files with 64 additions and 0 deletions

View File

@ -7,5 +7,23 @@ return gears.table.join(
description = "Change input language",
group = "System"
}
),
awful.key( {"Mod4", "Shift", "Control"}, "9",
function()
desktop.popup.language.set(2)
end,
{
description = "Set input language to RU",
group = "System"
}
),
awful.key( {"Mod4", "Shift", "Control"}, "0",
function()
desktop.popup.language.set(1)
end,
{
description = "Set input language to EN",
group = "System"
}
)
)