mirror of
https://github.com/Foltik/dotfiles
synced 2024-11-24 04:22:50 -05:00
9 lines
223 B
Bash
9 lines
223 B
Bash
#!/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 "${ACTIVE_WINDOW}"
|
|
echo ""
|
|
fi |