blob: c8996cbdcd02f3dd259486c6c5af6ef9e1ac7610 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
|
#!/usr/bin/env bash
echo AEROSPACE_PREV_WORKSPACE: $AEROSPACE_PREV_WORKSPACE, \
AEROSPACE_FOCUSED_WORKSPACE: $AEROSPACE_FOCUSED_WORKSPACE \
SELECTED: $SELECTED \
BG2: $BG2 \
INFO: $INFO \
SENDER: $SENDER \
NAME: $NAME \
>> ~/aaaa
source "$CONFIG_DIR/colors.sh"
AEROSPACE_FOCUSED_MONITOR=$(aerospace list-monitors --focused | awk '{print $1}')
AEROSAPCE_WORKSPACE_FOCUSED_MONITOR=$(aerospace list-workspaces --monitor focused --empty no)
AEROSPACE_EMPTY_WORKESPACE=$(aerospace list-workspaces --monitor focused --empty)
reload_workspace_icon() {
# echo reload_workspace_icon "$@" >> ~/aaaa
apps=$(aerospace list-windows --workspace "$@" | awk -F'|' '{gsub(/^ *| *$/, "", $2); print $2}')
icon_strip=" "
if [ "${apps}" != "" ]; then
while read -r app
do
icon_strip+=" $($CONFIG_DIR/plugins/icon_map.sh "$app")"
done <<< "${apps}"
else
icon_strip=" —"
fi
sketchybar --animate sin 10 --set space.$@ label="$icon_strip"
}
if [ "$SENDER" = "aerospace_workspace_change" ]; then
# if [ $i = "$FOCUSED_WORKSPACE" ]; then
# sketchybar --set space.$FOCUSED_WORKSPACE background.drawing=on
# else
# sketchybar --set space.$FOCUSED_WORKSPACE background.drawing=off
# fi
#echo 'space_windows_change: '$AEROSPACE_FOCUSED_WORKSPACE >> ~/aaaa
#echo space: $space >> ~/aaaa
#space="$(echo "$INFO" | jq -r '.space')"
#apps="$(echo "$INFO" | jq -r '.apps | keys[]')"
# apps=$(aerospace list-windows --workspace $AEROSPACE_FOCUSED_WORKSPACE | awk -F'|' '{gsub(/^ *| *$/, "", $2); print $2}')
#
# icon_strip=" "
# if [ "${apps}" != "" ]; then
# while read -r app
# do
# icon_strip+=" $($CONFIG_DIR/plugins/icon_map.sh "$app")"
# done <<< "${apps}"
# else
# icon_strip=" —"
# fi
reload_workspace_icon "$AEROSPACE_PREV_WORKSPACE"
reload_workspace_icon "$AEROSPACE_FOCUSED_WORKSPACE"
#sketchybar --animate sin 10 --set space.$space label="$icon_strip"
# current workspace space border color
sketchybar --set space.$AEROSPACE_FOCUSED_WORKSPACE icon.highlight=true \
label.highlight=true \
background.border_color=$GREY
# prev workspace space border color
sketchybar --set space.$AEROSPACE_PREV_WORKSPACE icon.highlight=false \
label.highlight=false \
background.border_color=$BACKGROUND_2
# if [ "$AEROSPACE_FOCUSED_WORKSPACE" -gt 3 ]; then
# sketchybar --animate sin 10 --set space.$AEROSPACE_FOCUSED_WORKSPACE display=1
# fi
## focused 된 모니터에 space 상태 보이게 설정
for i in $AEROSAPCE_WORKSPACE_FOCUSED_MONITOR; do
sketchybar --set space.$i display=$AEROSPACE_FOCUSED_MONITOR
done
for i in $AEROSPACE_EMPTY_WORKESPACE; do
sketchybar --set space.$i display=0
done
sketchybar --set space.$AEROSPACE_FOCUSED_WORKSPACE display=$AEROSPACE_FOCUSED_MONITOR
fi
|