~kris/dots

srice

ref: e9b48d06a8541f3eda5c4db90382ab3c77183afb srice/.config/eww/scripts/xwindow-clickable.sh -rwxr-xr-x 413 bytes
e9b48d06 — Kris Yotam xprofile: systemd-aware pipewire start + blueman-applet; sb-internet: tolerate missing /proc/net/wireless 2 months ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/bash
# ~/.config/polybar/scripts/xwindow-clickable.sh

# Get active window title
window_title=$(xdotool getactivewindow getwindowname 2>/dev/null)

# Truncate to max 50 characters
if [ -z "$window_title" ]; then
    echo "Desktop"
else
    # Truncate and add ellipsis if needed
    if [ ${#window_title} -gt 50 ]; then
        echo "${window_title:0:50}..."
    else
        echo "$window_title"
    fi
fi