Przeglądaj źródła

~/.config/awesome/rc.lua: Fix chromium shortcuts and have a locking shortcut.

Lucas Stadler 13 lat temu
rodzic
commit
389fb1d311
1 zmienionych plików z 3 dodań i 2 usunięć
  1. 3 2
      .config/awesome/rc.lua

+ 3 - 2
.config/awesome/rc.lua

@ -250,8 +250,9 @@ globalkeys = awful.util.table.join(
250 250
              end),
251 251
252 252
    awful.key({ modkey }, "l", function() os.execute("xkbswap") end),
253
    awful.key({ modkey }, "b", function() os.execute("chromium") end),
254
    awful.key({ modkey, "Shift" }, "b", function() os.execute("chromium --incognito") end)
253
    awful.key({ modkey, "Shift" }, "l", function() os.execute("xlock -mode blank") end),
254
    awful.key({ modkey }, "b", function() awful.util.spawn("chromium", false) end),
255
    awful.key({ modkey, "Shift" }, "b", function() awful.util.spawn("chromium --incognito", false) end)
255 256
)
256 257
257 258
clientkeys = awful.util.table.join(