diff options
author | Tim Keller <tjkeller.xyz> | 2024-11-09 17:18:45 -0600 |
---|---|---|
committer | Tim Keller <tjkeller.xyz> | 2024-11-09 17:18:45 -0600 |
commit | 5b7ad5a0c4e00ab4a18110fd77d0fcb5e3b253da (patch) | |
tree | c1c9be6dd8a0ab45aaa69baadda7ef4561b5c4d6 /bar.lua | |
parent | b6722f6fcc29e2c93b82315454c41087fb25170d (diff) | |
download | awesome-5b7ad5a0c4e00ab4a18110fd77d0fcb5e3b253da.tar.xz awesome-5b7ad5a0c4e00ab4a18110fd77d0fcb5e3b253da.zip |
fonts and theme changes
Diffstat (limited to 'bar.lua')
-rw-r--r-- | bar.lua | 12 |
1 files changed, 8 insertions, 4 deletions
@@ -1,6 +1,7 @@ local awful = require("awful") local wibox = require("wibox") local beautiful = require("beautiful") +local buttons = require("buttons") -- load widgets --local mylauncher = require("widgets.button") @@ -48,7 +49,11 @@ local widgets = { }, separator, } end, - textclock = wibox.widget.textclock("%A, %B %-e, %-I:%M %p"), + textclock = { + widget = wibox.widget.textclock, + format = "%A, %B %-e, %-I:%M %p", + font = beautiful.textclock_font, + }, cpu = { layout = wibox.layout.fixed.horizontal, wibox.widget.textbox "CPU: ", @@ -71,7 +76,6 @@ local widgets = { }, bat = { layout = wibox.layout.fixed.horizontal, - buttons = volume_buttons, wibox.widget.textbox "BAT: ", widget_battery, }, @@ -100,15 +104,15 @@ function widgets.right_widgets(s) return wibox.widget { layout = wibox.layout.fixed.horizontal, { layout = wibox.layout.fixed.horizontal, - spacing = spacing, + spacing = spacing * 2, { layout = wibox.layout.fixed.horizontal, widgets.cpu, widgets.temp, }, widgets.ram, - widgets.vol, widgets.bat, + widgets.vol, }, { widget = wibox.widget.separator, |