From 454710b975e1be2bcb71ef326342dcec9df577ff Mon Sep 17 00:00:00 2001 From: Florian Pritz Date: Thu, 4 Jun 2009 19:10:34 +0200 Subject: awesome config *should* work now again untested --- .config/awesome/rc.lua | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to '.config') diff --git a/.config/awesome/rc.lua b/.config/awesome/rc.lua index 068b672..90d4ca8 100644 --- a/.config/awesome/rc.lua +++ b/.config/awesome/rc.lua @@ -9,7 +9,7 @@ require("wicked") -- {{{ Variable definitions -- Themes define colours, icons, and wallpapers -- The default is a dark theme -theme_path = "/usr/share/awesome/themes/default/theme" +theme_path = "/home/flo/.themes/awesome/theme.lua" -- Uncommment this for a lighter theme -- theme_path = "/usr/share/awesome/themes/sky/theme" @@ -22,8 +22,7 @@ editor = "vim" editor_cmd = terminal .. " -e " .. editor -- Default modkey. -n -- Usually, Mod4 is the key with a logo between Control and Alt. +-- 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. @@ -77,9 +76,10 @@ for s = 1, screen.count() do -- Each screen has its own tag table. tags[s] = {} -- Create 9 tags per screen. - names = {'misc', 'dev', 'mail', 'ssh', 'code', 'hw'} - for tagnumber = 1, 6 do - tags[s][tagnumber] = tag({ name = names[tagnumber], layout = layouts[1] }) + --names = {'misc', 'dev', 'mail', 'ssh', 'code', 'hw'} + for tagnumber = 1, 9 do + tags[s][tagnumber] = tag(tagnumber) + --tags[s][tagnumber] = tag({ name = names[tagnumber], layout = layouts[1] }) -- Add tags to screen one by one tags[s][tagnumber].screen = s awful.layout.set(layouts[1], tags[s][tagnumber]) @@ -487,6 +487,6 @@ end) -- Hook called every second awful.hooks.timer.register(1, function () - mytextbox.text = os.date(" %a %b %d, %H:%M:%S %F" ") + mytextbox.text = os.date(" %a %b %d, %H:%M:%S %F") end) -- }}} -- cgit v1.2.3-24-g4f1b