Ma question est très similaire à Assurez-vous que wmctrl ignore les fenêtres de l'espace de travail actuel .
Le fait est que j'utilise XFCE pour que wmctrl
voie plus de bureaux.
petr@sova:~$ wmctrl -d
0 * DG: 1600x900 VP: 0,0 WA: 62,21 1538x879 1
1 - DG: 1600x900 VP: N/A WA: 62,21 1538x879 2
2 - DG: 1600x900 VP: N/A WA: 62,21 1538x879 3
3 - DG: 1600x900 VP: N/A WA: 62,21 1538x879 4
4 - DG: 1600x900 VP: N/A WA: 62,21 1538x879 5
5 - DG: 1600x900 VP: N/A WA: 62,21 1538x879 6
6 - DG: 1600x900 VP: N/A WA: 62,21 1538x879 7
7 - DG: 1600x900 VP: N/A WA: 62,21 1538x879 8
8 - DG: 1600x900 VP: N/A WA: 62,21 1538x879 9
J'ai des tonnes de raccourcis comme celui-ci:
wmctrl -xa Chromium || chromium-browser
Comment puis-je avoir wmctrl
uniquement dans l'espace de travail actuel? Je suis ouvert à envelopper wmctrl
dans une commande personnalisée.
Ok, je suis venu avec mon propre script. Au moins, j'ai appris quelques scripts bash Ubuntu;)
#!/bin/bash
num=`wmctrl -d | grep '\*' | cut -d' ' -f 1`
name=`wmctrl -lx | grep $1 | grep " $num " | tail -1`
Host=`hostname`
out=`echo ${name##*$Host}`
if [[ -n "${out}" ]]
then
`wmctrl -a "$out"`
else
$2
fi
Ce qu'il fait:
puis, en fonction du résultat:
Utilisation (attend que le nom du script soit switch_to_app
:
switch_to_app LookForThisString LaunchThisIfNotFound
par exemple
switch_to_app Chromium chromium-browser
EDIT: version plus géniale - lorsque vous relancez la commande (par exemple, appuyez de nouveau sur la frappe), elle passe à une autre instance de la fenêtre.
#!/bin/bash
app_name=$1
workspace_number=`wmctrl -d | grep '\*' | cut -d' ' -f 1`
win_list=`wmctrl -lx | grep $app_name | grep " $workspace_number " | awk '{print $1}'`
active_win_id=`xprop -root | grep '^_NET_ACTIVE_W' | awk -F'# 0x' '{print $2}' | awk -F', ' '{print $1}'`
if [ "$active_win_id" == "0" ]; then
active_win_id=""
fi
# get next window to focus on, removing id active
switch_to=`echo $win_list | sed s/.*$active_win_id// | awk '{print $1}'`
# if the current window is the last in the list ... take the first one
if [ "$switch_to" == "" ];then
switch_to=`echo $win_list | awk '{print $1}'`
fi
if [[ -n "${switch_to}" ]]
then
(wmctrl -ia "$switch_to") &
else
if [[ -n "$2" ]]
then
($2) &
fi
fi
exit 0