Ability to easily toggle sketchybar #349
rajeshmajumdar
started this conversation in
Ideas
Replies: 2 comments 1 reply
-
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_switched toggle.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.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
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