added sketchybar config

This commit is contained in:
Tyler Mayoff 2025-02-14 09:59:25 -05:00
parent 87bb07f015
commit 95ebd7af03
No known key found for this signature in database
GPG key ID: B62A5AFAD8E14845
38 changed files with 2329 additions and 0 deletions

View file

@ -0,0 +1,36 @@
local colors = require("colors")
local icons = require("icons")
local settings = require("settings")
-- Padding item required because of bracket
sbar.add("item", { width = 5 })
local apple = sbar.add("item", {
icon = {
font = { size = 16.0 },
string = icons.apple,
padding_right = 8,
padding_left = 8,
},
label = { drawing = false },
background = {
color = colors.bg2,
border_color = colors.black,
border_width = 1
},
padding_left = 1,
padding_right = 1,
click_script = "$CONFIG_DIR/helpers/menus/bin/menus -s 0"
})
-- Double border for apple using a single item bracket
sbar.add("bracket", { apple.name }, {
background = {
color = colors.transparent,
height = 30,
border_color = colors.grey,
}
})
-- Padding item required because of bracket
sbar.add("item", { width = 7 })