23 lines
387 B
Lua
23 lines
387 B
Lua
#!/usr/bin/env lua
|
|
|
|
local colors = require("colors")
|
|
|
|
local bar_height = 35
|
|
|
|
sbar.bar({
|
|
blur_radius = 20,
|
|
border_color = colors.bar.border,
|
|
border_width = 2,
|
|
color = colors.bar.bg,
|
|
corner_radius = 5,
|
|
height = bar_height,
|
|
margin = 10,
|
|
notch_width = 0,
|
|
padding_left = 10,
|
|
padding_right = 10,
|
|
position = "top",
|
|
shadow = true,
|
|
sticky = true,
|
|
topmost = false,
|
|
y_offset = 2,
|
|
})
|