-- {{{ Variable definitions
-- Themes define colours, icons, and wallpapers
-beautiful.init("/usr/share/awesome/themes/default/theme.lua")
+beautiful.init(awful.util.getdir("config").."/themes/shattered/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
-- Rules
require("rules")
+-- conky
+require("conky")
+
-- {{{ Signals
-- Signal function to execute when a new client appears.
client.connect_signal("manage", function (c, startup)
client.connect_signal("unfocus", function(c) c.border_color = beautiful.border_normal end)
-- }}}
+-- Set keys
+root.keys(globalkeys)
+
-- {{{ Autostart applications
require("autostart")
-- }}}