Ignore:
Timestamp:
09/01/10 15:49:58 (21 months ago)
Author:
Luper Rouch luper.rouch@…>
Children:
e7bf52cedc5410a62a59bfc22946d72454d3a5ac
Parents:
cadb525021a211c188d97fc9f03e59b3534cf108
git-author:
Luper Rouch <luper.rouch@…> (09/01/10 15:48:42)
git-committer:
Luper Rouch luper.rouch@…> (09/01/10 15:49:58)
Message:

update config

File:
1 edited

Legend:

Unmodified
Added
Removed
  • various/config/awesome/rc.lua

    r37bbbc7 r909bc1c  
    5858    ["qt"] = { position = 3, layout = awful.layout.suit.max }, 
    5959    ["p2p"] = { position = 4 }, 
    60  
    61     ["chat"] = { position = 1, screen = 2, init = true }, 
     60    ["gimp"] = { position = 5, layout = awful.layout.suit.tile,  
     61                 mwfact = 0.18, icon="/usr/share/pixmaps/gimp.png"  }, 
     62    ["palette"] = { position = 2, exclusive = true }, 
     63 
     64    ["chat"] = { position = 10, screen = 2, init = true }, 
    6265} 
    6366 
     
    7275     { match = { "Qt Assistant", "Qt Designer" }, tag = "qt", float = false }, 
    7376     { match = { "Ktorrent" }, tag = "p2p" }, 
     77     { match = { "Gimp" }, tag = "gimp" }, 
     78     { match = { "gimp%-image%-window" }, tag = "gimp", slave = true }, 
     79     { match = { "palette-editor.py", "palette-client.py" }, tag = "palette" }, 
    7480     { match = { "" }, buttons = awful.util.table.join( 
    7581            awful.button({ }, 1, function (c) client.focus = c; c:raise() end), 
     
    114120vicious.register(memwidget, vicious.widgets.mem, " $2MB/$3MB", 13) 
    115121 
    116 -- CPU Widget 
     122-- CPU Widgets 
    117123cpuwidget = widget({ type = "textbox" }) 
    118124vicious.register(cpuwidget, vicious.widgets.cpu, "$1%") 
     125cpufreqwidget = widget({ type = "textbox" }) 
     126vicious.register(cpufreqwidget, vicious.widgets.cpufreq, "($1MHz)", 1, "cpu0") 
    119127 
    120128-- Net Widget 
     
    125133-- tempwidget  = widget({ type = "textbox", name = "tempwidget" }) 
    126134-- vicious.register(tempwidget, vicious.widgets.thermal, "$1°C", 20, "thermal_zone2") 
     135 
     136baticon = widget({ type = "imagebox" }) 
     137baticon.image = image(beautiful.widget_bat) 
     138-- Initialize widget 
     139batwidget = widget({ type = "textbox" }) 
     140-- Register widget 
     141vicious.register(batwidget, vicious.widgets.bat, "$1$2% ($4)", 1, "BAT0") 
    127142 
    128143-- Icones 
     
    156171mymemicon.image = image(beautiful.widget_mem) 
    157172 
     173mybaticon = widget({ type = "imagebox", name = "mybaticon" }) 
     174mybaticon.image = image(beautiful.widget_bat) 
    158175-- }}} 
    159176 
     
    239256        myneticonup, netwidget, myneticon, 
    240257        myspacer, 
    241         cpuwidget, mycpuicon, 
     258        cpufreqwidget, myspacer, cpuwidget, mycpuicon, 
    242259        myspacer, 
    243260        memwidget, mymemicon, 
     261        batwidget, mybaticon, 
    244262        mytasklist[s], 
    245263        layout = awful.widget.layout.horizontal.rightleft, 
     
    407425 
    408426awful.util.spawn_with_shell("gnome-settings-daemon") 
     427awful.util.spawn_with_shell("gnome-volume-control-applet") 
     428awful.util.spawn_with_shell("gnome-power-manager") 
    409429awful.util.spawn_with_shell("xchat-gnome --class xchat") 
    410430awful.util.spawn_with_shell("pidgin") 
    411431awful.util.spawn_with_shell("chromium-browser") 
    412 awful.util.spawn_with_shell("gnome-volume-control-applet") 
    413  
    414 -- }}} 
     432awful.util.spawn_with_shell("nm-applet") 
     433awful.util.spawn_with_shell("ssh-add") 
     434 
     435-- }}} 
Note: See TracChangeset for help on using the changeset viewer.