blob: c5d8ed0f9eb205a05e6fd5ea4c8fadc64dade071 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#!/usr/bin/env bash
# hyprland/window -> focused application name.
# (For the literal window *title* instead of the app name, query yabai:
# yabai -m query --windows --window | jq -r '.title')
source "$CONFIG_DIR/colors.sh"
source "$CONFIG_DIR/icons.sh"
if [ "$SENDER" = "front_app_switched" ]; then
sketchybar --set "$NAME" label="$INFO"
fi
|