Updated Neovim Plugins as well as cleaned up aerospace config and sketbar config and added fastfetch config
15 lines
411 B
Bash
Executable File
15 lines
411 B
Bash
Executable File
#!/bin/bash
|
|
|
|
source "$CONFIG_DIR/colors.sh"
|
|
|
|
if [ "$1" = "$FOCUSED_WORKSPACE" ]; then
|
|
sketchybar --set $NAME background.drawing=on \
|
|
background.color=$BLUE \
|
|
label.color=$BAR_COLOR \
|
|
icon.color=$BAR_COLOR
|
|
else
|
|
sketchybar --set $NAME background.drawing=off \
|
|
label.color=$BLUE \
|
|
icon.color=$BLUE
|
|
fi
|