Updated Neovim Plugins as well as cleaned up aerospace config and sketbar config and added fastfetch config
16 lines
536 B
Bash
Executable File
16 lines
536 B
Bash
Executable File
#!/bin/sh
|
|
|
|
sketchybar --add event aerospace_workspace_change
|
|
|
|
SPACE_STRS=( )
|
|
|
|
for str in "${SPACE_STRS[@]}"
|
|
do
|
|
sketchybar -m --add space $str left \
|
|
--subscribe $str aerospace_workspace_change \
|
|
--set $str icon=$str \
|
|
associated_display=1 \
|
|
label.font="sketchybar-app-font:Regular:16.0" \
|
|
script="$PLUGIN_DIR/space.sh $str"
|
|
done
|