05/01/20 01:32:11 N851jTH0
>>723
取りあえず、作ったbashスクリプトを貼るので、誰か改造して。
一応、ランダムに壁紙が変わるようになった。
#!/bin/sh
_WALLPAPER_DIR="/home/hoge/wallpapers"
_PROFILE_NAME="fuga"
_WALLPAPER=$(ls -1 $_WALLPAPER_DIR | while read s;
do
echo $RANDOM $s;
done | sort | while read rnd s;
do
echo $s
done | head -n 1)
gconftool-2 --type string --set /apps/gnome-terminal/profiles/$_PROFILE_NAME/background_image \
$_WALLPAPER_DIR/$_WALLPAPER
gnome-terminal --geometry=120x40 &