Skip to content

Commit

Permalink
Change foreground colors and set menubar height
Browse files Browse the repository at this point in the history
  • Loading branch information
zliebersbach committed Jul 30, 2016
1 parent 75f0395 commit ec4ee43
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
3 changes: 2 additions & 1 deletion rc.lua
Original file line number Diff line number Diff line change
Expand Up @@ -152,6 +152,7 @@ mylauncher = awful.widget.launcher({

-- Menubar configuration
menubar.utils.terminal = terminal -- Set the terminal for applications that require it
menubar.geometry = { height = 16 }
-- }}}

-- {{{ Wibox
Expand Down Expand Up @@ -220,7 +221,7 @@ for s = 1, screen.count() do
mytasklist[s] = awful.widget.tasklist(s, awful.widget.tasklist.filter.currenttags, mytasklist.buttons)

-- Create the wibox
mywibox[s] = awful.wibox({ position = "top", screen = s, height = "24" })
mywibox[s] = awful.wibox({ position = "top", screen = s, height = "16" })

-- Widgets that are aligned to the left
local left_layout = wibox.layout.fixed.horizontal()
Expand Down
8 changes: 4 additions & 4 deletions themes/material-dark/theme.lua
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
theme = {}

theme.font = "Sans 8"
theme.font = "Roboto 8"

theme.bg_normal = "#303030"
theme.bg_focus = "#424242"
theme.bg_urgent = theme.bg_focus
theme.bg_minimize = theme.bg_focus
theme.bg_systray = "#212121"

theme.fg_normal = "#B0B0B0"
theme.fg_normal = "#FFFFFF"
theme.fg_focus = "#FFFFFF"
theme.fg_urgent = theme.fg_focus
theme.fg_minimize = theme.fg_normal
Expand All @@ -27,7 +27,7 @@ theme.border_marked = theme.bg_focus
-- tooltip_[font|opacity|fg_color|bg_color|border_width|border_color]
-- mouse_finder_[color|timeout|animate_timeout|radius|factor]
-- Example:
--theme.taglist_bg_focus = "#ff0000"
--theme.taglist_bg_focus = "#FF0000"

-- Display the taglist squares
theme.taglist_squares_sel = "/usr/share/awesome/themes/material-dark/taglist/squarefw.png"
Expand All @@ -43,7 +43,7 @@ theme.menu_width = 128
-- You can add as many variables as
-- you wish and access them by using
-- beautiful.variable in your rc.lua
--theme.bg_widget = "#cc0000"
--theme.bg_widget = "#CC0000"

-- Define the image to load
theme.titlebar_close_button_normal = "/usr/share/awesome/themes/material-dark/titlebar/close_normal.png"
Expand Down

0 comments on commit ec4ee43

Please sign in to comment.