diff options
author | zachir <zachir@librem.one> | 2023-11-05 17:16:23 -0600 |
---|---|---|
committer | zachir <zachir@librem.one> | 2023-11-05 17:16:23 -0600 |
commit | a1cd133f38ab5f6b3c80e4e74a0a45e1c6326b11 (patch) | |
tree | 87aa9e750e9b5778d34e45be0fe51803938dad40 /mpdarc-widget | |
parent | 6ca46530b2c59d21ec83cb86a2dfc07f1e00f073 (diff) |
Use beautiful.font or args.font for widgets
Diffstat (limited to 'mpdarc-widget')
-rw-r--r-- | mpdarc-widget/mpdarc.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mpdarc-widget/mpdarc.lua b/mpdarc-widget/mpdarc.lua index 609efbf..d5e6ae9 100644 --- a/mpdarc-widget/mpdarc.lua +++ b/mpdarc-widget/mpdarc.lua @@ -50,7 +50,7 @@ local mpdarc_icon_widget = wibox.container.mirror(mpdarc, { horizontal = true }) local mpdarc_current_song_widget = wibox.widget { id = 'current_song', widget = wibox.widget.textbox, - font = beautiful.font2 or beautiful.font + font = beautiful.font or 'Play 9' } local update_graphic = function(widget, stdout, _, _, _) |