Compare commits

...

2 Commits

@ -1,5 +1,12 @@
#!/usr/bin/env bash
#!/usr/bin/env zsh
if [ -n "$FOCUSED_WORKSPACE" ]; then
sketchybar --set "$NAME" label="$FOCUSED_WORKSPACE"
# Original source:
# https://nikitabobko.github.io/AeroSpace/goodness#show-aerospace-workspaces-in-sketchybar
workspaces=("${(@f)$(aerospace list-workspaces --monitor $1)}")
if (($workspaces[(Ie)$FOCUSED_WORKSPACE])); then
sketchybar --set "$NAME" label="$FOCUSED_WORKSPACE" background.drawing=on
else
sketchybar --set "$NAME" label="$FOCUSED_WORKSPACE" background.drawing=off
fi

@ -38,12 +38,15 @@ sketchybar --default "${default[@]}"
### Aerospace
sketchybar --add event aerospace_workspace_change
sketchybar --add item aerospace left \
--subscribe aerospace aerospace_workspace_change \
--set aerospace \
icon.drawing=off \
label="$(aerospace list-workspaces --focused)" \
script="$CONFIG_DIR/plugins/aerospace.sh"
for monitor in $(aerospace list-monitors | awk '{print $1}'); do
sketchybar --add item aerospace.$monitor left \
--subscribe aerospace.$monitor aerospace_workspace_change \
--set aerospace.$monitor \
display=$monitor \
icon.drawing=off \
label="$(aerospace list-workspaces --focused)" \
script="$CONFIG_DIR/plugins/aerospace.sh $monitor"
done
##### Adding Left Items #####
# We add some regular items to the left side of the bar, where

@ -1,7 +1,7 @@
### atuin
export ATUIN_NOBIND=true
eval "$(atuin init zsh)"
# export ATUIN_NOBIND=true
# eval "$(atuin init zsh)"
# Reference: https://github.com/junegunn/fzf/discussions/3099
fzf-atuin-history-widget() {

Loading…
Cancel
Save