blob: 1ad595b8301cc9e7ddc271126370a8d4a47821b2 (
plain) (
blame)
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
|
#!/usr/bin/env dash
# Toggle the Thunderbird main window between the sway scratchpad and the
# current workspace (tiled). If Thunderbird isn't running yet, launch it.
set -eu
MARK=tb-main
APP_ID=org.mozilla.thunderbird
TITLE_SUFFIX="Mozilla Thunderbird"
tree=$(swaymsg -t get_tree)
tb_id=$(printf '%s\n' "$tree" | jq -r --arg m "$MARK" '
first(
.. | objects
| select(.marks? // [] | index($m))
| .id
) // empty')
if [ -z "$tb_id" ]; then
tb_id=$(printf '%s\n' "$tree" | jq -r \
--arg app "$APP_ID" --arg suffix "$TITLE_SUFFIX" '
first(
.. | objects
| select(.app_id? == $app)
| select((.name? // "") | endswith($suffix))
| .id
) // empty')
if [ -z "$tb_id" ]; then
exec flatpak run org.mozilla.thunderbird
fi
swaymsg "[con_id=\"$tb_id\"] mark --add $MARK" >/dev/null
fi
# __i3_scratch means the window is currently stashed in the scratchpad.
tb_ws=$(printf '%s\n' "$tree" | jq -r --argjson id "$tb_id" '
first(
.. | objects
| select(.type=="workspace")
| select([.. | objects | select(.id? == $id)] | length > 0)
| .name
) // empty')
if [ "$tb_ws" = "__i3_scratch" ]; then
# scratchpad show reveals it as floating; floating disable tiles it on the
# current workspace.
swaymsg "[con_id=\"$tb_id\"] scratchpad show, floating disable" >/dev/null
else
# Criteria-based move can cause sway to follow focus to the originating
# workspace. Pin focus back to where we started.
current_ws=$(swaymsg -t get_workspaces | jq -r '.[] | select(.focused) | .name')
swaymsg "[con_id=\"$tb_id\"] move container to scratchpad" >/dev/null
swaymsg "workspace \"$current_ws\"" >/dev/null
fi
|