Awesome: sync clipboards with clipit
This commit is contained in:
@@ -13,3 +13,4 @@ xterm*utf8Title: true
|
||||
xterm*allowC1Printable: true
|
||||
xterm*locale: true
|
||||
xterm*metaSendsEscape: true
|
||||
!xterm*VT100.translations: #override <Btn1Up>: select-end(PRIMARY, CLIPBOARD, CUT_BUFFER0)
|
||||
|
||||
@@ -93,6 +93,30 @@ externals.sounds.alsa = {
|
||||
}
|
||||
--}}}
|
||||
|
||||
--{{{ sounds.pulse
|
||||
externals.sounds.pulse = {
|
||||
exec = function(command)
|
||||
exec('amixer -q ' .. command)
|
||||
end,
|
||||
|
||||
manager = function()
|
||||
conexec('alsamixer')
|
||||
end,
|
||||
|
||||
mute = function()
|
||||
externals.sounds.alsa.exec('set ' .. externals.sound.channel .. ' toggle')
|
||||
end,
|
||||
|
||||
up = function()
|
||||
externals.sounds.alsa.exec('set ' .. externals.sound.channel .. ' 2dB+')
|
||||
end,
|
||||
|
||||
down = function()
|
||||
externals.sounds.alsa.exec('set ' .. externals.sound.channel .. ' 2dB-')
|
||||
end
|
||||
}
|
||||
--}}}
|
||||
|
||||
--{{{ powers.pm
|
||||
externals.powers.pm = {
|
||||
exec = function(command)
|
||||
|
||||
@@ -110,7 +110,7 @@ tags = {}
|
||||
for s = 1, screen.count() do
|
||||
-- Each screen has its own tag table.
|
||||
tags[s] = awful.tag(
|
||||
{ "1:term", "2:bw", "3:vim", "4:skype", "5:IM", "6:vbox", 7, }, s,
|
||||
{ "1:term", "2:bw", "3:vim", "4:skype", "5:IM", "6:vbox", 7, }, s,
|
||||
{ layouts[7], layouts[10], layouts[10], layouts[7], layouts[10], layouts[10], layouts[10] }
|
||||
)
|
||||
end
|
||||
|
||||
Reference in New Issue
Block a user