1
0
mirror of https://github.com/bertptrs/vimconfig.git synced 2025-12-27 13:30:31 +01:00

Add sound control widget to awesome.

This commit is contained in:
Bert Peters
2016-12-29 13:57:18 +01:00
parent 5001ed5402
commit 8c320a9604
2 changed files with 57 additions and 0 deletions

View File

@@ -10,6 +10,7 @@ local beautiful = require("beautiful")
-- Notification library
local naughty = require("naughty")
local menubar = require("menubar")
local volume = require("volume")
-- {{{ Error handling
-- Check if awesome encountered an error during startup and fell back to
@@ -191,6 +192,7 @@ for s = 1, screen.count() do
local battery = require("battery")
right_layout:add(mytextclock)
right_layout:add(volume)
right_layout:add(battery)
right_layout:add(mylayoutbox[s])
@@ -276,6 +278,11 @@ globalkeys = awful.util.table.join(
-- Menubar
awful.key({ modkey }, "p", function() menubar.show() end),
-- Volume control
awful.key({ }, "XF86AudioLowerVolume", function () volume.decrease() end),
awful.key({ }, "XF86AudioRaiseVolume", function () volume.increase() end),
awful.key({ }, "XF86AudioMute", function () volume.mute() end),
-- Backlight control
awful.key({ }, "XF86MonBrightnessDown", function ()
awful.util.spawn("xbacklight -dec 15") end),