We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
basically, have a config where space highlight changes with an animation, then spam switching spaces (eg with hotkeys set with skhd)
video:
the white box is a window that i put on each space, so it is guaranteed to show the correct space.
~/.config/sketchybar/demo/sketchybarrc:
~/.config/sketchybar/demo/sketchybarrc
#!/bin/bash bar=( height=30 color=0xff000000 position=top sticky=on topmost=on ) sketchybar --bar "${bar[@]}" # spaces SPACE_ICONS=("1" "2" "3" "4" "5" "6" "7" "8" "9" "10") sid=0 spaces=() for i in "${!SPACE_ICONS[@]}"; do sid=$(($i + 1)) space=( associated_space=$sid icon="${SPACE_ICONS[i]}" icon.highlight_color=0xffff0000 script="~/.config/sketchybar/demo/space.sh" ) sketchybar --add space space.$sid left \ --set space.$sid "${space[@]}" done # end spaces sketchybar --update echo "sketchybar configuration loaded.."
~/.config/sketchybar/demo/space.sh:
~/.config/sketchybar/demo/space.sh
#!/bin/bash sketchybar \ --animate sin 10 \ --set $NAME icon.highlight=$SELECTED
The text was updated successfully, but these errors were encountered:
I also had this issue, have to restart sketchy bar every day to fix it.
Sorry, something went wrong.
cancel previous animation of color property before creating the new o…
632c446
…ne (#404)
remove an animation only after it has displayed its last frame (#404)
0d4b45c
Should be fixed on master, you can test by running:
brew services stop sketchybar brew uninstall sketchybar brew install sketchybar --head brew services start sketchybar
and then go back to the stable release with
brew services stop sketchybar brew uninstall sketchybar brew install sketchybar brew services start sketchybar
Thank you for quick fix @FelixKratz
No branches or pull requests
basically, have a config where space highlight changes with an animation, then spam switching spaces (eg with hotkeys set with skhd)
video:
the white box is a window that i put on each space, so it is guaranteed to show the correct space.
CleanShot.2023-10-02.at.19.25.04.mp4
same video, 1/4 the speed
b.mp4
sample config (the one used for the video)
~/.config/sketchybar/demo/sketchybarrc
:~/.config/sketchybar/demo/space.sh
:The text was updated successfully, but these errors were encountered: