diff options
Diffstat (limited to 'awesome/theme')
-rw-r--r-- | awesome/theme/theme.lua | 27 |
1 files changed, 13 insertions, 14 deletions
diff --git a/awesome/theme/theme.lua b/awesome/theme/theme.lua index 6dd591b..dce3884 100644 --- a/awesome/theme/theme.lua +++ b/awesome/theme/theme.lua @@ -1,25 +1,24 @@ ---------------------------- --- Default awesome theme -- ---------------------------- +--------------------------------------------- +-- David Robillard's Awesome Awesome Theme -- +--------------------------------------------- theme = {} theme.font = "DejaVu Sans 10" -theme.bg_normal = "#000000" -theme.bg_focus = "#5A8F47" -theme.bg_urgent = "#DFFF00" -- Chartreuse +theme.bg_focus = "#3F3F3F" theme.bg_minimize = "#444444" - -theme.fg_normal = "#aaaaaa" -theme.fg_focus = "#ffffff" -theme.fg_urgent = "#ffffff" +theme.bg_normal = "#202020" +theme.bg_urgent = "#DFFF00" +theme.fg_focus = "#F0F0F0" theme.fg_minimize = "#ffffff" +theme.fg_normal = "#CCCCCC" +theme.fg_urgent = "#FFFFFF" +theme.border_focus = "#3F3F3F" +theme.border_marked = "#DFFF00" +theme.border_normal = "#202020" theme.border_width = "2" -theme.border_normal = "#000000" -theme.border_focus = "#5A8F47" -theme.border_marked = "#91231c" -- There are other variable sets -- overriding the default one when @@ -74,7 +73,7 @@ theme.titlebar_maximized_button_normal_active = "/usr/share/awesome/themes/defau theme.titlebar_maximized_button_focus_active = "/usr/share/awesome/themes/default/titlebar/maximized_focus_active.png" -- You can use your own command to set your wallpaper -theme.wallpaper_cmd = { "xsetroot -solid black" } +theme.wallpaper_cmd = { "xsetroot -solid '#202020'" } -- You can use your own layout icons like this: theme.layout_fairh = "/usr/share/awesome/themes/default/layouts/fairhw.png" |