summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--oxwm/.config/oxwm/config.lua27
1 files changed, 0 insertions, 27 deletions
diff --git a/oxwm/.config/oxwm/config.lua b/oxwm/.config/oxwm/config.lua
index 7b729f7..b290019 100644
--- a/oxwm/.config/oxwm/config.lua
+++ b/oxwm/.config/oxwm/config.lua
@@ -52,40 +52,13 @@ 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,
- }),
- oxwm.bar.block.static({
- text = " │ ",
- interval = 999999999,
- color = colors.lavender,
underline = false,
}),
- oxwm.bar.block.battery({
- format = "Bat: {}%",
- charging = "⚡ Bat: {}%",
- discharging = "- Bat: {}%",
- full = "✓ Bat: {}%",
- interval = 30,
- color = colors.green,
- underline = true,
- }),
};
-------------------------------------------------------------------------------