Je veux utiliser un papier peint différent sur chaque espace de travail, mais le suivant ne change pas les papiers peints de fond :
Il y a un problème ....à gauche-droite quand on clique sur les espaces de travail.(Ubuntu 10.04)...
startwall.sh un fichier que j'ai créé et j'ai appelé Terminal dans sh startwall.sh et j'ai ajouté Application de démarrage et j'ai Exécuter l'application. Mais je veux Jouer comme Fond automatique toujours sur chaque Formes de travail.
Code:
#!/bin/bash
ws=$(wmctrl -d | wc -l)
cws=$(wmctrl -d | awk '/*/ {print $1}')
lws=$(($cws-1))
if [ $lws = -1 ]; then
lws=$(($ws-1))
gconftool -t string -s /desktop/gnome/background/picture_filename "/root/Desktop/wall/b.jpg";
else
gconftool -t string -s /desktop/gnome/background/picture_filename "/root/Desktop/wall/q.jpg
fi
OU
#!/bin/bash
# ws=$(wmctrl -d | wc -l)
cws=$(wmctrl -d | awk '/\*/ {print $1}')
if [ $cws = 0 ]; then
wmctrl -s $cws
gconftool -t string -s /desktop/gnome/background/picture_filename "/root/Desktop/wall/b.jpg"
else
gconftool -t string -s /desktop/gnome/background/picture_filename "/root/Desktop/wall/q.jpg"
fi