foo
This commit is contained in:
parent
21b9bf3edc
commit
3820f1882e
|
@ -70,7 +70,8 @@ globalkeys = awful.util.table.join(
|
|||
|
||||
--tabletpc keys
|
||||
awful.key({ hyper }, "6", function () awful.util.spawn("/usr/local/bin/rotate") end),
|
||||
awful.key({ modkey }, "x", function () awful.util.spawn("cellwriter --show-window") end),
|
||||
--awful.key({ modkey }, "x", function () awful.util.spawn("cellwriter --show-window") end),
|
||||
awful.key({ modkey }, "x", function () teardrop("cellwriter","top","center", 0.99, 0.4)end ),
|
||||
awful.key({ modkey, "Control" }, "Delete", function () awful.util.spawn("xlock") end),
|
||||
|
||||
-- Audio control
|
||||
|
|
|
@ -26,9 +26,14 @@ awful.rules.rules = {
|
|||
{ rule = { class = "Firefox" },
|
||||
properties = { tag = tags[1][2] } },
|
||||
{ rule = { class = "Pidgin" },
|
||||
properties = { tag = tags[1][3] } },
|
||||
properties = { tag = tags[1][3]} },
|
||||
{ rule = { role = "buddy_list" },
|
||||
properties = { master = true } },
|
||||
{ rule = { role = "conversation" },
|
||||
callback = awful.client.setslave},
|
||||
{ rule = { class = "Irssi"},
|
||||
properties = { tag = tags[1][3]} ,
|
||||
callback = awful.client.setslave},
|
||||
{ rule = { class = "Claws-mail" },
|
||||
properties = { tag = tags[1][4] } },
|
||||
{ rule = { class = "Thunderbird" },
|
||||
|
|
2
tags.lua
2
tags.lua
|
@ -4,7 +4,7 @@ tags={}
|
|||
tags.setup = {
|
||||
{ name = "1:⚙", layout = layouts[1] },
|
||||
{ name = "2:⌘", layout = layouts[7] },
|
||||
{ name = "3:☻", layout = layouts[2], mwfact = 0.80 },
|
||||
{ name = "3:☻", layout = layouts[2], mwfact = 0.20 },
|
||||
{ name = "4:✉", layout = layouts[7] },
|
||||
{ name = "5:☑", layout = layouts[7] },
|
||||
{ name = "6:♫", layout = layouts[1] },
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
-- {{{ Main
|
||||
theme = {}
|
||||
theme.wallpaper_cmd = { "nitrogen --restore" }
|
||||
theme.wallpaper_cmd = { "awsetbg /usr/share/awesome/themes/zenburn/zenburn-background.png" }
|
||||
-- }}}
|
||||
|
||||
-- {{{ Styles
|
||||
|
|
Loading…
Reference in a new issue