summaryrefslogtreecommitdiffstats
path: root/.config
diff options
context:
space:
mode:
authorFlorian Pritz <f-p@gmx.at>2009-06-04 19:10:34 +0200
committerFlorian Pritz <f-p@gmx.at>2009-06-04 19:10:34 +0200
commit454710b975e1be2bcb71ef326342dcec9df577ff (patch)
tree13de76f997facf2f67ea543a07314de288fe5971 /.config
parentedbcbccde574175148d5d99ce76c5955c602a315 (diff)
downloaddotfiles-454710b975e1be2bcb71ef326342dcec9df577ff.tar.gz
dotfiles-454710b975e1be2bcb71ef326342dcec9df577ff.tar.xz
awesome config *should* work now
again untested
Diffstat (limited to '.config')
-rw-r--r--.config/awesome/rc.lua14
1 files changed, 7 insertions, 7 deletions
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)
-- }}}