diff options
author | Tim Keller <tjk@tjkeller.xyz> | 2024-10-11 20:43:20 -0500 |
---|---|---|
committer | Tim Keller <tjk@tjkeller.xyz> | 2024-10-11 20:43:20 -0500 |
commit | ce020ab718b0ea09224dd15fc9a5796b3acc7904 (patch) | |
tree | 5d1ab3fb93f85d6fbf1b9fe84dfcd3484ce6ef33 /awesome/theme.lua | |
parent | 5e84a09eb67772b07a73102538d2445ecb403613 (diff) | |
download | dotconfig-ce020ab718b0ea09224dd15fc9a5796b3acc7904.tar.xz dotconfig-ce020ab718b0ea09224dd15fc9a5796b3acc7904.zip |
overhaul awesome
Diffstat (limited to 'awesome/theme.lua')
-rw-r--r-- | awesome/theme.lua | 32 |
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) |