aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2017-09-01 08:26:11 -0300
committerSilvio Rhatto <rhatto@riseup.net>2017-09-01 08:26:11 -0300
commite0581c93a4d34b7710c9e8d9efdf3c482aa77e15 (patch)
tree8d74202d41de679ee63bd575dbfd5d869328cd6b
parent91fa9d481cd982154e8c0ea06f0aad301d5420af (diff)
downloadawesome-e0581c93a4d34b7710c9e8d9efdf3c482aa77e15.tar.gz
awesome-e0581c93a4d34b7710c9e8d9efdf3c482aa77e15.tar.bz2
Commented conky rule for transparency
-rw-r--r--config.dot/awesome.link/programs.lua2
-rw-r--r--config.dot/awesome.link/rc.simple.lua2
-rw-r--r--config.dot/awesome.link/rules.lua4
3 files changed, 6 insertions, 2 deletions
diff --git a/config.dot/awesome.link/programs.lua b/config.dot/awesome.link/programs.lua
index b14083c..65ef86f 100644
--- a/config.dot/awesome.link/programs.lua
+++ b/config.dot/awesome.link/programs.lua
@@ -1,2 +1,2 @@
-- Put here all startup command declarations
---awful.util.spawn_with_shell("xwicd")
+--awful.spawn("xwicd")
diff --git a/config.dot/awesome.link/rc.simple.lua b/config.dot/awesome.link/rc.simple.lua
index 47d5e27..2821da3 100644
--- a/config.dot/awesome.link/rc.simple.lua
+++ b/config.dot/awesome.link/rc.simple.lua
@@ -14,4 +14,4 @@ dofile(configdir .. "/keys.lua")
terminal = "terminal"
-- Background
-awful.util.spawn_with_shell("sleep 1 && awsetbg " .. homedir .. "/themes/backgrounds/background.jpg")
+awful.spawn("sleep 1 && awsetbg " .. homedir .. "/themes/backgrounds/background.jpg")
diff --git a/config.dot/awesome.link/rules.lua b/config.dot/awesome.link/rules.lua
index 493cc4a..ea29999 100644
--- a/config.dot/awesome.link/rules.lua
+++ b/config.dot/awesome.link/rules.lua
@@ -1,5 +1,6 @@
-- {{{ Rules
awful.rules.rules = {
+ -- You can get the WM_CLASS unsing xprop(1)
-- All clients will match this rule.
{ rule = { },
properties = { border_width = beautiful.border_width,
@@ -21,6 +22,9 @@ awful.rules.rules = {
properties = { size_hints_honor = false } },
{ rule = { class = "URxvt" },
properties = { size_hints_honor = false } },
+ -- Set conky transparency when using a compositor
+ --{ rule = { class = "Conky" },
+ -- properties = { opacity = 0 } },
-- Set Firefox to always map on tags number 2 of screen 1.
-- { rule = { class = "Firefox" },
-- properties = { tag = tags[1][2] } },