summaryrefslogtreecommitdiff
path: root/theme.lua
diff options
context:
space:
mode:
authorTim Keller <tjkeller.xyz>2024-11-17 22:48:47 -0600
committerTim Keller <tjkeller.xyz>2024-11-17 22:48:47 -0600
commit1ad1e4120700148359b271566ca70aed7ae79321 (patch)
tree8a7955e5d40bcaf51a2ca2044637532dcf850341 /theme.lua
parent25013359a29e76693e908af1395ae31b0cf15c26 (diff)
downloadawesome-1ad1e4120700148359b271566ca70aed7ae79321.tar.xz
awesome-1ad1e4120700148359b271566ca70aed7ae79321.zip
pavolctld refactor and audio dropdown initial
Diffstat (limited to 'theme.lua')
-rw-r--r--theme.lua16
1 files changed, 14 insertions, 2 deletions
diff --git a/theme.lua b/theme.lua
index 9393030..6df5649 100644
--- a/theme.lua
+++ b/theme.lua
@@ -16,14 +16,14 @@ beautiful.gap_single_client = false
-- overrides
beautiful.tasklist_font_focus = beautiful.font -- prevent bold
-beautiful.wibar_height = math.floor(beautiful.get_font_height(beautiful.font) * 1.1)
+beautiful.wibar_height = math.floor(beautiful.get_font_height(beautiful.font) * 1.15)
beautiful.wibar_bg = darkgray
--beautiful.layoutlist_font = "Monospace 8"
--beautiful.font = "Tamzen 10"
--beautiful.tasklist_align = "center" -- does nothing?
beautiful.font_sans = beautiful.font
-beautiful.font_mono = "CommitMono 10"
+beautiful.font_mono = "monospace 10"
beautiful.font = beautiful.font_mono
--beautiful.layoutlist_font = beautiful.font_mono
@@ -41,6 +41,18 @@ beautiful.hotkeys_label_fg = white
beautiful.hotkeys_modifiers_fg = lightgray
beautiful.hotkeys_label_bg = darkgray -- ???
+-- slider
+beautiful.slider_bar_height = 5
+beautiful.slider_bar_shape = gears.shape.rounded_rect
+beautiful.slider_handle_width = 17.5
+beautiful.slider_handle_shape = gears.shape.circle
+beautiful.slider_handle_color = beautiful.border_color
+beautiful.slider_handle_border_color = "#333333"
+beautiful.slider_handle_border_width = 1
+
+-- progressbar
+beautiful.progressbar_fg = beautiful.border_focus
+
-- 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)