From e842d34c9ae3a48a78bbcaa5b9fc58216e1d49a6 Mon Sep 17 00:00:00 2001 From: Toby Vincent Date: Mon, 7 Oct 2024 13:30:57 -0500 Subject: refactor(i3blocks): move i3blocks to bin dir --- i3blocks/.local/bin/i3blocks-title | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100755 i3blocks/.local/bin/i3blocks-title (limited to 'i3blocks/.local/bin/i3blocks-title') diff --git a/i3blocks/.local/bin/i3blocks-title b/i3blocks/.local/bin/i3blocks-title new file mode 100755 index 0000000..c014adc --- /dev/null +++ b/i3blocks/.local/bin/i3blocks-title @@ -0,0 +1,17 @@ +#!/bin/sh + +into_block='{ + "full_text": (.name[0:50] // ""), + "short_text": ([.app_id, .window_title, .name] | map(select(. != null and . != "")) | (first // "") | .[0:25]), +}' + +swaymsg -t get_tree | jq -c '.. | select(.focused? == true and .type == "con") | '"$into_block" + +swaymsg --monitor -t subscribe '["window", "workspace"]' | jq -c --unbuffered ' + select((.change | test("close|focus|title")) and (.current.type == "workspace" or .container.focused)) | + if .current.type == "workspace" or .change == "close" then + { "full_text": "" } + else + .container | '"$into_block"' + end +' -- cgit v1.2.3-70-g09d2