ubuntu自动更换壁纸

创建一个.sh文件

eagle@eagle-com:~$ vim background.sh

path后面的地址为你放图片文件夹的地址。需要根据情况更改。

#!/usr/bin/env bash
# AUTHOR:   eagle
# EMAIL:   bruce.e.zhao@gmail.com
# FILE:     my.sh
# ROLE:     TODO (some explanation)
# CREATED:  2016-10-18 19:27:58
# MODIFIED: 2016-10-18 21:45:23
path=/home/eagle/Pictures/background
files=`ls -U $path`
last_file='empty'

echo '<background>'
echo ' <starttime>'
echo '   <year>2009</year>'
echo '   <month>08</month>'
echo '   <day>04</day>'
echo '   <hour>00</hour>'
echo '   <minute>00</minute>'
echo '   <second>00</second>'
echo ' </starttime>'

for current_file in $files
do
	if [[ $last_file == 'empty' ]] 
	then
		last_file=$current_file
		echo ' <static>'
		echo '   <duration>295.0</duration>'
		echo "   <file>$path/$last_file</file>"
		echo ' </static>'
	else 
		echo ' <transition>'
		echo '    <duration>5.0</duration>'
		echo "    <from>$path/$last_file</from>"
		echo "    <to>$path/$current_file</to>"
		echo ' </transition>'
		echo ' <static>'
		echo '   <duration>295.0</duration>'
		echo "   <file>$path/$current_file</file>"
		echo ' </static>'
		last_file=$current_file 
	fi
done

echo '</background>'

eagle@eagle-com:~$ chmod 755 background.sh

eagle@eagle-com:~$ ./background.sh > mybackground.xml

eagle@eagle-com:~$ vim /usr/share/gnome-background-properties/xenial-wallpapers.xml



<wallpaper deleted="false">
<name>mybackground</name>
<filename>/home/eagle/Pictures/mybackground.xml</filename>
<options>zoom</options>
</wallpaper>

即在该文件中添上上面5句话,<name>标签中可随意起一个名字。<filename>标签为xml文件的地址。


之后在背景里选择与<name>标签下名字相同的即可。

相关文章

1.安装过程出现0x00000000指令引用的0x00000000内存该内存不能为written 如果你安装的是inux系统 需要在...
写在全面:如果根据以下教程涉及到只读文件需要更改文件权限才能需修改文件内容,参考我的另一篇博客:...
写在前面:以下步骤中需要在终端输入命令,电脑端查看博客的朋友可以直接复制粘贴到终端,手机端查看的...
ubuntu16.04和18.04更换国内源 写在前面:安装好ubuntu双系统后,默认的软件更新源是国外的,在国内使用...
ubuntu双系统启动时卡死解决办法(在ubuntu16.04和18.04测试无误) 问题描述: 在安装完ubuntu双系统后...
又来造轮子了。。。。。。。。。。。。。。。。 今天使用w3af向文件中写入的时候,发现没有write权限,...