FelixKratz / dotfiles

My personal macOS configuration
GNU General Public License v3.0
929 stars 92 forks source link

Windows blurred? #28

Closed Sasutski closed 10 months ago

Sasutski commented 11 months ago

Blurring occurs right after I ran the .install.sh WhatsApp Image 2023-09-14 at 16 53 15 I am using a M1 chip Macbook. I don't really know if this is a problem of me not understanding how to run the code properly, my mac having contradicting code or something, or really an issue. Either way, can someone figure what is happening? I had to reset my macbook for this :(

FelixKratz commented 11 months ago

This is something yabai does due to a problem on Ventura I think, you have to disable the window blur in yabai:

yabai -m config window_border_blur off

but this is the setting I am using already in my config...

EDIT: These are my own dotfiles, simply running the install script without knowing what it does is not a good idea :D

Sasutski commented 11 months ago

Ah. I got it to work already, didnt understand what was being installed.\

I do have one question though.

How do I make the battery icon and spotify bar always show even when battery is full and spotify is not playing

Im trying to play around with it.

does it have something to do with the plugin battery.sh?

BATTERY_INFO="$(pmset -g batt)"
PERCENTAGE=$(echo "$BATTERY_INFO" | grep -Eo "\d+%" | cut -d% -f1)
CHARGING=$(echo "$BATTERY_INFO" | grep 'AC Power')

if [ $PERCENTAGE = "" ]; then
  exit 0
fi

DRAWING=on
COLOR=$WHITE
case ${PERCENTAGE} in
  9[0-9]|100) ICON=$BATTERY_100; DRAWING=off
  ;;
  [6-8][0-9]) ICON=$BATTERY_75; DRAWING=off
  ;;
  [3-5][0-9]) ICON=$BATTERY_50
  ;;
  [1-2][0-9]) ICON=$BATTERY_25; COLOR=$ORANGE
  ;;
  *) ICON=$BATTERY_0; COLOR=$RED
esac

if [[ $CHARGING != "" ]]; then
  ICON=$BATTERY_CHARGING
  DRAWING=off
fi

sketchybar --set $NAME drawing=$DRAWING icon="$ICON" icon.color=$COLOR