From 6baef1437fcf40b1d51c5255af78ab297d361d2c Mon Sep 17 00:00:00 2001 From: TheSiahxyz <164138827+TheSiahxyz@users.noreply.github.com> Date: Sat, 23 Aug 2025 13:36:06 +0900 Subject: updates --- mac/.local/bin/gracefulkill | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100755 mac/.local/bin/gracefulkill (limited to 'mac/.local/bin/gracefulkill') diff --git a/mac/.local/bin/gracefulkill b/mac/.local/bin/gracefulkill new file mode 100755 index 0000000..918ab79 --- /dev/null +++ b/mac/.local/bin/gracefulkill @@ -0,0 +1,25 @@ +#!/bin/bash +set -euo pipefail + +changedVimFocused() { + title=$(getFocusedTitle) + [[ $title == *VIM\ \+\" ]] +} + +getFocusedConId() { + i3-msg -t get_tree | jq 'recurse | objects | select(.type=="con" and .focused==true) | .id' +} + +getFocusedTitle() { + id=$(getFocusedConId) + i3-msg -t get_tree | jq "recurse | objects | select(.id == $id) | .name" +} + +killFocusedContainer() { + id=$(getFocusedConId) + i3-msg "[con_id=\"$id\"]" kill +} + +if ! changedVimFocused; then + killFocusedContainer +fi -- cgit v1.2.3