X-Git-Url: https://git.rmz.io/dotfiles.git/blobdiff_plain/e724e4d7cf44ecd4b3f706678fa14f5bfe9b0879..4b1d62d1350c90c23d9d365ffcb1ecdf1f088e3d:/awesome/rc.lua?ds=inline diff --git a/awesome/rc.lua b/awesome/rc.lua index 8879c5e..1a49ab7 100644 --- a/awesome/rc.lua +++ b/awesome/rc.lua @@ -8,8 +8,6 @@ beautiful = require("beautiful") -- Notification library naughty = require("naughty") menubar = require("menubar") --- Pulseaudio widget ---local APW = require("apw/widget") -- {{{ Error handling -- Check if awesome encountered an error during startup and fell back to @@ -38,20 +36,13 @@ end -- {{{ Variable definitions -- Themes define colours, icons, and wallpapers -beautiful.init("/usr/share/awesome/themes/default/theme.lua") +beautiful.init(awful.util.getdir("config").."/themes/mlp/theme.lua") -- This is used later as the default terminal and editor to run. -terminal = "urxvt" +terminal = "urxvtc" editor = os.getenv("EDITOR") or "vim" editor_cmd = terminal .. " -e " .. editor --- Default modkey. --- Usually, Mod4 is the key with a logo between Control and Alt. --- If you do not like this or do not have such a key, --- I suggest you to remap Mod4 to another key using xmodmap or other tools. --- However, you can use another modifier like Mod1, but it may interact with others. -modkey = "Mod4" - -- Tags require("tags") -- }}} @@ -110,6 +101,5 @@ client.connect_signal("unfocus", function(c) c.border_color = beautiful.border_n -- Set keys root.keys(globalkeys) --- {{{ Autostart applications +-- Autostart applications require("autostart") --- }}}