Advertisement
Guest User

Untitled

a guest
Sep 23rd, 2017
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.96 KB | None | 0 0
  1. awful.rules.rules = {
  2.     -- All clients will match this rule.
  3.     { rule = { },
  4.       properties = { border_width = beautiful.border_width,
  5.                      border_color = beautiful.border_normal,
  6.                      focus = true,
  7.                      keys = clientkeys,
  8.                      buttons = clientbuttons } },
  9.     { rule = { class = "MPlayer" },
  10.       properties = { floating = true } },
  11.     { rule = { class = "pinentry" },
  12.       properties = { floating = true } },
  13.     { rule = { class = "gimp" },
  14.       properties = { floating = true } },
  15.     -- Set Firefox to always map on tags number 2 of screen 1.
  16.     -- { rule = { class = "Firefox" },
  17.     --   properties = { tag = tags[1][2] } },
  18.     { rule = { class = "Conky" },
  19.       properties = {
  20.       focus = false,
  21.       focusable = false,
  22.       floating = true,
  23.       below = true,
  24.       ontop = false,
  25.       sticky = true,
  26.       skip_taskbar = true,
  27.       size_hints_honor = false } },
  28. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement