URL: https://linuxfr.org/forums/astucesdivers/posts/x-window-changer-automatiquement-les-th%C3%AAmes-wm Title: [X-Window] Changer automatiquement les thêmes WM Authors: kasi Date: 2002年03月05日T14:09:13+01:00 Tags: Score: 0 un bête shell à mettre dans la crontab : #!/bin/bash #grouick TMP_DIR=/tmp find $HOME/GNUstep/Library/WindowMaker/Themes/ -type d | sort> $TMP_DIR/liste.t NBRLIGN=`wc -l $TMP_DIR/liste.t | awk '{print 1ドル}'` NBRLIGN=`expr $NBRLIGN - 1` if [ -r $TMP_DIR/liste.m ] then M=`cat $TMP_DIR/liste.m` else M=1 fi setstyle `cat $TMP_DIR/liste.t | tail -n$M | head -n1` M=`expr $M + 1` if [ $M -gt $NBRLIGN ] then M=1 fi echo $M> $TMP_DIR/liste.m