X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=.config%2Fawesome%2Frc.lua;h=e7e8c87174fdd9e43721fea5b47f14dc90caa11e;hb=4e9b428b6e305250f462b510f7a53460ea08f298;hp=0c3b1f541b113e44a56b341964b49c8d69f977b7;hpb=8fc895ef3e92b048f792cf0ab6bc1cabb5ee63bf;p=x_base.git diff --git a/.config/awesome/rc.lua b/.config/awesome/rc.lua index 0c3b1f5..e7e8c87 100644 --- a/.config/awesome/rc.lua +++ b/.config/awesome/rc.lua @@ -22,6 +22,8 @@ terminal = "x-terminal-emulator" editor = os.getenv("EDITOR") or "editor" editor_cmd = terminal .. " -e " .. editor +hostname = awful.util.pread("hostname -f"):gsub("\n", "") + -- 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, @@ -49,10 +51,15 @@ layouts = -- {{{ Tags -- Define a tag table which hold all screen tags. -tags = {} +tags = {names={"mail","emacs","www","remotes",5,6,7,8,9} + } for s = 1, screen.count() do -- Each screen has its own tag table. - tags[s] = awful.tag({ 1, 2, 3, 4, 5, 6, 7, 8, 9 }, s, layouts[1]) + defaultlayout=layouts[9] + if s == 1 and hostname == "archimedes.ucr.edu" then + defaultlayout=layouts[2] + end + tags[s] = awful.tag(tags.names, s, defaultlayout) end -- }}} @@ -359,7 +366,7 @@ function warp_mouse() c = client.focus if c then local g = c:geometry() - mouse.coords({ x = g.x + 30, y = g.y + 30}, true) + mouse.coords({ x = g.x + 1, y = g.y + 1}, true) end end