Changeset a9600c54b979c31276a8cb1ebde6f86a1fad96b1


Ignore:
Timestamp:
12/08/10 13:50:15 (18 months ago)
Author:
Luper Rouch <luper.rouch@…>
Children:
95462ec83fa4b780c30e729f5a1c1078498b99e4
Parents:
d8e9cb2325469b3c2eb53e85bca47650b14a8822
git-committer:
Luper Rouch <luper.rouch@…> (12/08/10 13:50:15)
Message:

awesome config:

  • updated battery indicator widget for newer kernels
  • flashier border to indicate current frame
  • tags screen number is defined with a variable instead of a constant
Location:
various/config/awesome
Files:
3 edited

Legend:

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

    r7bf4d89 ra9600c5  
    5454 
    5555-- tag settings 
     56first_screen = 2 
     57second_screen = 1 
     58 
    5659shifty.config.tags = { 
    57     ["dev"] = { position = 1, init = true }, 
    58     ["web"] = { position = 2, init = true, layout = awful.layout.suit.max }, 
    59     ["qt"] = { position = 3, layout = awful.layout.suit.max }, 
    60     ["p2p"] = { position = 4 }, 
    61     ["gimp"] = { position = 5, layout = awful.layout.suit.floating }, 
    62     ["inks"] = { position = 6, layout = awful.layout.suit.max }, 
    63     ["vbox"] = { position = 7, layout = awful.layout.suit.max }, 
    64     ["palette"] = { position = 2, exclusive = true }, 
    65  
    66     ["chat"] = { position = 10, screen = 2, init = true, mwfact = 0.8 }, 
     60    ["dev"] = { position = 1, init = true, screen = first_screen }, 
     61    ["web"] = { position = 2, init = true, layout = awful.layout.suit.max, screen = first_screen }, 
     62    ["qt"] = { position = 3, layout = awful.layout.suit.max, screen = first_screen }, 
     63    ["p2p"] = { position = 4, screen = first_screen }, 
     64    ["gimp"] = { position = 5, layout = awful.layout.suit.floating, screen = first_screen }, 
     65    ["inks"] = { position = 6, layout = awful.layout.suit.max, screen = first_screen }, 
     66    ["vbox"] = { position = 7, layout = awful.layout.suit.max, screen = first_screen }, 
     67    ["palette"] = { position = 2, exclusive = true, screen = first_screen }, 
     68 
     69    ["chat"] = { position = 10, screen = second_screen, init = true, mwfact = 0.8 }, 
    6770} 
    6871 
     
    458461run_once("gnome-volume-control-applet") 
    459462run_once("gnome-power-manager") 
    460 run_once("xchat-gnome", "--class xchat") 
    461 run_once("pidgin") 
     463-- run_once("xchat-gnome", "--class xchat") 
     464-- run_once("pidgin") 
    462465run_once("nm-applet") 
    463 run_once("chromium-browser") 
    464 -- }}} 
     466-- run_once("chromium-browser") 
     467-- }}} 
  • various/config/awesome/themes/zenburn/theme.lua

    r7bf4d89 ra9600c5  
    2929theme.border_width  = "2" 
    3030theme.border_normal = "#3F3F3F" 
    31 theme.border_focus  = "#6F6F6F" 
     31theme.border_focus  = "#FFFFFF" 
    3232theme.border_marked = "#CC9393" 
    3333-- }}} 
  • various/config/awesome/vicious/widgets/bat.lua

    r909bc1c ra9600c5  
    6161 
    6262    -- Get charge information 
    63     if battery.current_now then 
    64         rate = battery.current_now 
     63    if battery.power_now then 
     64        rate = battery.power_now 
    6565    else -- Todo: other rate sources, as with capacity? 
    6666        return {state, percent, "N/A"} 
Note: See TracChangeset for help on using the changeset viewer.