X-Git-Url: https://git.rmz.io/dotfiles.git/blobdiff_plain/c2682990e19c06e6aef1b6fca7bfda2a5658f69c..304da20411ff67b5054986c86d87d4cb7e1d26db:/awesome/rc.lua?ds=sidebyside diff --git a/awesome/rc.lua b/awesome/rc.lua index 0de85cc..8879c5e 100644 --- a/awesome/rc.lua +++ b/awesome/rc.lua @@ -41,7 +41,7 @@ end beautiful.init("/usr/share/awesome/themes/default/theme.lua") -- This is used later as the default terminal and editor to run. -terminal = "konsole" +terminal = "urxvt" editor = os.getenv("EDITOR") or "vim" editor_cmd = terminal .. " -e " .. editor @@ -76,6 +76,9 @@ require("bindings") -- Rules require("rules") +-- conky +require("conky") + -- {{{ Signals -- Signal function to execute when a new client appears. client.connect_signal("manage", function (c, startup) @@ -104,6 +107,9 @@ client.connect_signal("focus", function(c) c.border_color = beautiful.border_foc client.connect_signal("unfocus", function(c) c.border_color = beautiful.border_normal end) -- }}} +-- Set keys +root.keys(globalkeys) + -- {{{ Autostart applications require("autostart") -- }}}