diff options
| author | David T. Sadler <davidtsadler@googlemail.com> | 2026-07-17 14:11:37 +0100 |
|---|---|---|
| committer | David T. Sadler <davidtsadler@googlemail.com> | 2026-07-17 14:11:37 +0100 |
| commit | 6a564cd3e7259fd327e1883d658d93b219ca0f37 (patch) | |
| tree | f46b178a2dd75b74329a6ffa04f9d59761941c05 | |
| parent | 34f6f9e669d4b36deff3851728ba5bee44371b92 (diff) | |
Just show datetime in oxwm blocks
| -rw-r--r-- | oxwm/.config/oxwm/config.lua | 14 |
1 files changed, 1 insertions, 13 deletions
diff --git a/oxwm/.config/oxwm/config.lua b/oxwm/.config/oxwm/config.lua index afba051..b290019 100644 --- a/oxwm/.config/oxwm/config.lua +++ b/oxwm/.config/oxwm/config.lua @@ -52,24 +52,12 @@ local bar_font = "JetBrainsMono Nerd Font:style=Bold:size=10" -- Define your blocks -- Similar to widgets in qtile, or dwmblocks local blocks = { - oxwm.bar.block.ram({ - format = "Ram: {used}/{total} GB", - interval = 5, - color = colors.light_blue, - underline = true, - }), - oxwm.bar.block.static({ - text = " │ ", - interval = 999999999, - color = colors.lavender, - underline = false, - }), oxwm.bar.block.datetime({ format = "{}", date_format = "%a, %b %d - %H:%M", interval = 1, color = colors.cyan, - underline = true, + underline = false, }), }; |
