Früher habe ich wmctrl -a <name>
verwendet , was gut funktioniert, aber kürzlich auf xdotool
umgestellt wurde , z. B.:
xdotool search --name <name-or-regex-for-name> windowraise
Es hat auch viele andere Funktionen.
Zum Installieren:
sudo apt-get install xdotool
Nun, nach sudo apt-get install wmctrl
-ing können Sie mit diesem Bash-Skript spielen:
#! /bin/bash
WINTITLE="Mail/News" # Main Thunderbird window has this in titlebar
PROGNAME="mozilla-thunderbird" # This is the name of the binary for t-bird
# Use wmctrl to list all windows, count how many contain WINTITLE,
# and test if that count is non-zero:
if [ `wmctrl -l | grep -c "$WINTITLE"` != 0 ]
then
wmctrl -a "$WINTITLE" # If it exists, bring t-bird window to front
else
$PROGNAME & # Otherwise, just launch t-bird
fi
exit 0
Was ich hier gefunden habe