From 7921326c2905ef5f5733b4c144b98e1d840b10f6 Mon Sep 17 00:00:00 2001 From: Yorick van Pelt Date: Wed, 5 Jun 2013 17:20:14 +0200 Subject: [PATCH] update rc.lua with new rules and transparent notifications --- awesome/rc.lua | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/awesome/rc.lua b/awesome/rc.lua index a74be65..2584fe2 100644 --- a/awesome/rc.lua +++ b/awesome/rc.lua @@ -205,6 +205,7 @@ do text = text, timeout = 0, screen = mouse.screen, + opacity = 0.8, --ontop = true, }) end @@ -511,9 +512,13 @@ awful.rules.rules = { properties = { floating = true } }, { rule = { class = "gimp" }, properties = { floating = true } }, + { rule = { class = "Tilda" }, + properties = { floating = true } }, + { rule = { instance = "plugin-container" }, + properties = { floating = true } }, -- Set Firefox to always map on tags number 2 of screen 1. - -- { rule = { class = "Firefox" }, - -- properties = { tag = tags[1][2] } }, + { rule = { class = "Firefox" }, + properties = { tag = tags[1][2] } }, } -- }}}