dotfiles/home/bin/i3blocks/window

9 lines
198 B
Plaintext
Raw Normal View History

2019-03-05 04:55:37 +00:00
#!/bin/bash
ACTIVE_WINDOW=$(xprop -id $(xprop -root _NET_ACTIVE_WINDOW | cut -d ' ' -f 5) WM_NAME | cut -d '"' -f 2)
if [[ "${ACTIVE_WINDOW}" != "" ]]; then
echo "${ACTIVE_WINDOW}"
echo ""
fi