Split Bar but extend to notch #292
-
|
I have a MacBook with a notch and I was wondering if it would be possible to have two full bars that extend from the top left corner of the screen to the left side of the notch AND from the right side of the notch to the top right corner of the screen. I've tried using brackets with two items placed in sketchybarrc#!/usr/bin/env zsh
PLUGIN_DIR="$HOME/.config/sketchybar/plugins"
##### Bar Appearance #####
# https://felixkratz.github.io/SketchyBar/config/bar
sketchybar --bar height=32 \
blur_radius=50 \
position=top \
sticky=on \
padding_left=23 \
padding_right=23 \
display=main \
color=0x00000000
sketchybar --add item test1 left \
--set test1 \
icon=1
sketchybar --add item test2 q \
--set test2 \
icon=2
sketchybar --add bracket left_bar test1 test2 \
--set left_bar \
background.color=0xff000000
##### Adding Left Items #####
# https://felixkratz.github.io/SketchyBar/config/items#adding-items-to-sketchybar
##### Finalizing Setup #####
sketchybar --update
echo "sketchybar configuration loaded.."Screenshot |
Beta Was this translation helpful? Give feedback.
Answered by
FelixKratz
Dec 15, 2022
Replies: 2 comments 6 replies
This comment has been hidden.
This comment has been hidden.
-
|
With the newest release bracketing the first |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
FelixKratz
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment

With the newest release bracketing the first
leftand the firstqitem is the way to go. I will hide the old hacky "solutions" as deprecated.