summaryrefslogtreecommitdiff
path: root/awesome/theme.lua
diff options
context:
space:
mode:
Diffstat (limited to 'awesome/theme.lua')
-rw-r--r--awesome/theme.lua32
1 files changed, 26 insertions, 6 deletions
diff --git a/awesome/theme.lua b/awesome/theme.lua
index e48c1ce..98f0ee8 100644
--- a/awesome/theme.lua
+++ b/awesome/theme.lua
@@ -1,19 +1,39 @@
--- Theme handling library
+-- theme handling library
local beautiful = require("beautiful")
local gears = require("gears")
--- Themes define colours, icons, font and wallpapers.
+-- 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_font_focus = beautiful.font -- prevent bold
-beautiful.tasklist_align = "center" -- does nothing?
-beautiful.wibar_height = "18"
+--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
+-- 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)