From ec5c7168c8588a79f12a44a5155097552cde506e Mon Sep 17 00:00:00 2001 From: Ian Foster Date: Fri, 27 Dec 2013 13:55:42 -0800 Subject: [PATCH] darmburn theme done --- awesome/awesome/darkburn/theme.lua | 23 ++++++++++------------- awesome/awesome/rc.lua | 30 ++++++++++-------------------- 2 files changed, 20 insertions(+), 33 deletions(-) diff --git a/awesome/awesome/darkburn/theme.lua b/awesome/awesome/darkburn/theme.lua index 8d54603..4c51741 100644 --- a/awesome/awesome/darkburn/theme.lua +++ b/awesome/awesome/darkburn/theme.lua @@ -7,7 +7,6 @@ theme = {} theme.confdir = awful.util.getdir("config") theme.themedir = theme.confdir .. "/darkburn/" ---TODO better wallpaper handling theme.wallpaper_cmd = { "awsetbg -a .wallpaper.jpg" } -- }}} @@ -24,11 +23,10 @@ theme.bg_urgent = "#3F3F3F" -- }}} -- {{{ Borders ---theme.border_width = "1" -theme.border_width = "0" +theme.border_width = 0 theme.border_normal = "#3F3F3F" theme.border_focus = "#6F6F6F" -theme.border_marked = "#CC9393" +--theme.border_marked = "#CC9393" -- }}} -- {{{ Titlebars @@ -47,20 +45,19 @@ theme.titlebar_bg_normal = "#3F3F3F" -- }}} ---TODO use these variables -- {{{ Widgets -- You can add as many variables as -- you wish and access them by using --- beautiful.variable in your rc.lua ---theme.fg_widget = "#AECF96" ---theme.fg_center_widget = "#88A175" ---theme.fg_end_widget = "#FF5656" ---theme.bg_widget = "#494B4F" +-- beautiful.variableName in your rc.lua +theme.fg_widget = "#AECF96" +theme.fg_center_widget = "#FFCF00" +theme.fg_end_widget = "#FF5656" +theme.bg_widget = "#111111" --theme.border_widget = "#3F3F3F" -- }}} -- {{{ Mouse finder -theme.mouse_finder_color = "#CC9393" +--theme.mouse_finder_color = "#CC9393" -- mouse_finder_[timeout|animate_timeout|radius|factor] -- }}} @@ -68,8 +65,8 @@ theme.mouse_finder_color = "#CC9393" -- Variables set for theming the menu: -- menu_[bg|fg]_[normal|focus] -- menu_[border_color|border_width] -theme.menu_height = "16" -theme.menu_width = "100" +theme.menu_height = 16 +theme.menu_width = 100 -- }}} -- {{{ Icons diff --git a/awesome/awesome/rc.lua b/awesome/awesome/rc.lua index 35b2efd..1dd2803 100644 --- a/awesome/awesome/rc.lua +++ b/awesome/awesome/rc.lua @@ -151,7 +151,7 @@ menu_items = {} table.insert(menu_items, { "awesome", myawesomemenu, beautiful.awesome_icon }) table.insert(menu_items, { "Exit", exit_command }) -mymainmenu = awful.menu.new({ items = menu_items, width = 150 }) +mymainmenu = awful.menu.new({ items = menu_items, width = beautiful.menu_width }) mylauncher = awful.widget.launcher({ image = image(beautiful.awesome_icon), menu = mymainmenu }) @@ -165,9 +165,6 @@ mylauncher = awful.widget.launcher({ image = image(beautiful.awesome_icon), -- {{{ Wibox -- Create a textclock widget mytextclock = awful.widget.textclock({ align = "right" }) -mytextclock.buttons = awful.util.table.join( - awful.button({ }, 1, function() naughty.notify({text = "it works"}) end) -) --calendar plugin calendar2.addCalendarToWidget(mytextclock) @@ -180,22 +177,15 @@ separator.text = "|" space = widget({ type = "textbox" }) space.text = " " -local fg_end_color = "#FF5656" -local fg_color = "#AECF96" -local fg_center_color = "#FFCF00" -local bg_color = "#111111" - ---TODO height of bar for widgets and wibox should be set in theme ---TODO rename theme -- RAM usage widget memwidget = awful.widget.progressbar() memwidget:set_width(8) -memwidget:set_height(15) +memwidget:set_height(beautiful.menu_height) memwidget:set_vertical(true) -memwidget:set_background_color(bg_color) -memwidget:set_color(fg_color) -memwidget:set_gradient_colors({ fg_color, fg_center_color, fg_end_color }) +memwidget:set_background_color(beautiful.bg_widget) +memwidget:set_color(beautiful.fg_widget) +memwidget:set_gradient_colors({ beautiful.fg_widget, beautiful.fg_center_widget, beautiful.fg_end_widget }) -- RAM usage tooltip memwidget_t = awful.tooltip({ objects = { memwidget.widget },}) vicious.cache(vicious.widgets.mem) @@ -209,11 +199,11 @@ vicious.register(memwidget, vicious.widgets.mem, -- CPU usage widget cpuwidget = awful.widget.graph() cpuwidget:set_width(30) -cpuwidget:set_height(15) -cpuwidget:set_background_color(bg_color) -cpuwidget:set_color(fg_color) +cpuwidget:set_height(beautiful.menu_height) +cpuwidget:set_background_color(beautiful.bg_widget) +cpuwidget:set_color(beautiful.fg_widget) cpuwidget:set_gradient_angle(180) -cpuwidget:set_gradient_colors({ fg_color, fg_center_color, fg_end_color }) +cpuwidget:set_gradient_colors({ beautiful.fg_widget, fg_center_widget, beautiful.fg_end_widget }) cpuwidget_t = awful.tooltip({ objects = { cpuwidget.widget },}) -- Register CPU widget vicious.register(cpuwidget, vicious.widgets.cpu, @@ -290,7 +280,7 @@ for s = 1, screen.count() do end, mytasklist.buttons) -- Create the wibox - mywibox[s] = awful.wibox({ position = "top", screen = s, height = "16" }) + mywibox[s] = awful.wibox({ position = "top", screen = s, height = beautiful.menu_height }) -- Add widgets to the wibox - order matters mywibox[s].widgets = { { -- 1.9.1