Ability to easily toggle sketchybar #349
rajeshmajumdar
started this conversation in
Ideas
Replies: 3 comments 2 replies
-
|
You can script something like this like so: sketchybarrc sketchybar --add item toggler left \
--set toggler drawing=off \
updates=on \
script="$PLUGIN_DIR/toggle.sh" \
--subscribe toggler front_app_switchedtoggle.sh #!/bin/sh
case "$INFO" in
"Finder") sketchybar --bar hidden=on
;;
*) sketchybar --bar hidden=off
esac |
Beta Was this translation helpful? Give feedback.
1 reply
-
|
Hi Felix, |
Beta Was this translation helpful? Give feedback.
1 reply
-
|
Does anyone have a suggestion for toggling this to appear on a space change or focus change and then hiding after 5 seconds or so? |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Recently I installed dmenu-mac, and it's simply does what it suppose to do. Except the bar stays on top of the menu. Same goes when I use apps like illustrator, for that I need to use the default bar many options are there. But it stays on top of all that, it would be great if in the config file itself I could add some kind of blacklist to auto show/hide the bar.
Since sketchybar already allows drawings to be off through command line, and it also has the capability of knowing which apps we are currently running. In theory this should be possible to implement.
Beta Was this translation helpful? Give feedback.
All reactions