Guest User

Untitled

a guest
May 17th, 2018
157
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.66 KB | None | 0 0
  1.  -- Sound widget
  2.  volwidget = widget({ type = "textbox" })
  3.  vicious.register(volwidget, vicious.widgets.volume, "" .. colblk .. "vol " .. coldef .. colbgre .. "$1% " .. coldef .. "", 1, "Master")
  4.  volwidget:buttons(awful.util.table.join(awful.button({}, 4, function () awful.util.spawn ( "amixer -c 0 set Master 2dB+" ) end ),
  5.                                          awful.button({}, 5, function () awful.util.spawn ( "amixer -c 0 set Master 2dB-" ) end ) ) )
  6.  
  7.  -- Gmail widget
  8.  mailwidget = widget({ type = "textbox" })
  9.  vicious.register(mailwidget, vicious.widgets.gmail, "" .. colblk .. "gmail " .. coldef .. colbgre .. "${count} messages" .. coldef .. " | ", 20)
Add Comment
Please, Sign In to add comment