diff options
author | Peter Palfrader <peter@palfrader.org> | 2016-12-13 18:36:20 +0100 |
---|---|---|
committer | Peter Palfrader <peter@palfrader.org> | 2016-12-15 21:49:55 +0100 |
commit | 4bfeafc3ae74c7ca6d7cf123f597932ec512e6ef (patch) | |
tree | babae61ca995838d26b85c72f521fbbc023e61ed | |
parent | 2b642e582ad79d54c195011f0d51f61f91966ac4 (diff) |
Minor theming updates
-rw-r--r-- | config/awesome/rc.lua | 2 | ||||
-rw-r--r-- | config/awesome/themes/weasel/theme.lua | 5 |
2 files changed, 5 insertions, 2 deletions
diff --git a/config/awesome/rc.lua b/config/awesome/rc.lua index 300bf47..418579f 100644 --- a/config/awesome/rc.lua +++ b/config/awesome/rc.lua @@ -191,7 +191,7 @@ for s = 1, screen.count() do mytasklist[s] = awful.widget.tasklist(s, awful.widget.tasklist.filter.alltags, mytasklist.buttons) -- Create the wibox - mywibox[s] = awful.wibox({ position = "top", screen = s }) + mywibox[s] = awful.wibox({ position = "bottom", screen = s }) -- Widgets that are aligned to the left local left_layout = wibox.layout.fixed.horizontal() diff --git a/config/awesome/themes/weasel/theme.lua b/config/awesome/themes/weasel/theme.lua index 09914b6..d491bd5 100644 --- a/config/awesome/themes/weasel/theme.lua +++ b/config/awesome/themes/weasel/theme.lua @@ -4,7 +4,7 @@ theme = {} theme.font = "sans 8" theme.bg_normal = "#222222" -theme.bg_focus = "#666d8c" +theme.bg_focus = "#565d7c" theme.bg_urgent = "#ff0000" theme.bg_systray = theme.bg_normal @@ -19,6 +19,9 @@ theme.border_width = 1 theme.border_normal = "#222222" theme.border_focus = "#009966" +theme.tasklist_bg_urgent = "#662222" +theme.tasklist_bg_focus = "#363d4c" + theme.wallpaper = "/usr/share/wallpapers/joy/contents/images/1920x1200.png" |