Преглед на файлове

~/.config/awesome: Control audio using X media keys.

Lucas Stadler преди 13 години
родител
ревизия
6760bf2432
променени са 1 файла, в които са добавени 5 реда и са изтрити 1 реда
  1. 5 1
      .config/awesome/rc.lua

+ 5 - 1
.config/awesome/rc.lua

@ -252,7 +252,11 @@ globalkeys = awful.util.table.join(
252 252
    awful.key({ modkey }, "l", function() os.execute(os.getenv('HOME') .. "/.bin/xkbswap") end),
253 253
    awful.key({ modkey, "Shift" }, "l", function() os.execute("xlock -mode blank") end),
254 254
    awful.key({ modkey }, "b", function() awful.util.spawn("chromium --allow-file-access-from-files", false) end),
255
    awful.key({ modkey, "Shift" }, "b", function() awful.util.spawn("chromium --incognito --allow-file-access-from-files", false) end)
255
    awful.key({ modkey, "Shift" }, "b", function() awful.util.spawn("chromium --incognito --allow-file-access-from-files", false) end),
256
257
	 awful.key({ }, "XF86AudioMute", function() os.execute("amixer set Master toggle") end),
258
    awful.key({ }, "XF86AudioLowerVolume", function() os.execute("amixer set Master 5%-") end),
259
    awful.key({ }, "XF86AudioRaiseVolume", function() os.execute("amixer set Master 5%+") end)
256 260
)
257 261
258 262
clientkeys = awful.util.table.join(