summaryrefslogtreecommitdiff
path: root/theme.lua
blob: 98f0ee86db8a044965ea23928e53d28731fe8680 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
-- theme handling library
local beautiful = require("beautiful")
local gears = require("gears")

-- colors
local darkgray = "#222222"
local white = "#ffffff"
local lightgray = "#aaaaaa"

-- themes define colours, icons, font and wallpapers
beautiful.init(gears.filesystem.get_themes_dir() .. "gtk/theme.lua")

-- gaps
beautiful.useless_gap = 0
beautiful.gap_single_client = false

-- overrides
beautiful.tasklist_font_focus = beautiful.font -- prevent bold
beautiful.wibar_height = "18"
beautiful.wibar_bg = darkgray
--beautiful.layoutlist_font = "Monospace 8"
--beautiful.font = "Tamzen 10"
--beautiful.taglist_font = "Tamzen 10"
--beautiful.tasklist_font = beautiful.font
--beautiful.tasklist_align = "center"  -- does nothing?

-- hotkeys menu
beautiful.hotkeys_font = beautiful.font -- TODO make bold
beautiful.hotkeys_description_font = beautiful.font
beautiful.hotkeys_border_color = beautiful.border_focus
beautiful.hotkeys_bg = darkgray
beautiful.hotkeys_fg = white
beautiful.hotkeys_label_fg = white
beautiful.hotkeys_modifiers_fg = lightgray
beautiful.hotkeys_label_bg = darkgray -- ???

-- set border on clients
client.connect_signal("focus",   function(c) c.border_color = beautiful.border_focus  end)
client.connect_signal("unfocus", function(c) c.border_color = beautiful.border_normal end)