| 1234567891011121314151617 | #!/bin/bash# Get focused app_idapp_id=$(swaymsg -t get_tree | jq -r '  ..  | ((.nodes? + .floating_nodes?) // empty)  | .[] | select(.focused and .pid).app_id  ' -r)  echo $app_idif [[ "$app_id" == "Alacritty" ]]; then    wtype -M ctrl -M shift -k c -m shift -m ctrlelse    wtype -M ctrl -k c -m ctrlfi
 |