码迷,mamicode.com
首页 > 系统相关 > 详细

linux shell(ubuntu18.04.4 LTS) autostart to change the wallpaper

时间:2020-05-21 00:19:42      阅读:60      评论:0      收藏:0      [点我收藏+]

标签:一个   bsp   cront   shel   span   lan   and   not   测试   

ubuntu18.04.4如何设置开机自动启动屏幕墙纸更换,步骤如下:

首先用python3 编写一个.sh 程序文件,程序文件的路径设为/xxx/change_wallpaper.sh

#!/bin/bash

export DISPLAY=:0
export XAUTHORITY=/home/username/.Xauthority   # change username with your user name
export XDG_RUNTIME_DIR=/run/user/1000

dir=xxx # your wallpaper directory
pcmanfm -w "$(find $dir -type f | shuf -n1)" # random select a picture and set it as desktop wallpaper

 

然后在终端输入命令行,按照自己的设置方式,比如开机自启动后每隔30分钟更换屏幕墙纸.

crontab -e # NOTE:There is a blank space after the "crontab"

在最后一行添加

*/30 * * * * /xxx/change_wallpaper.sh

reboot测试.

 

linux shell(ubuntu18.04.4 LTS) autostart to change the wallpaper

标签:一个   bsp   cront   shel   span   lan   and   not   测试   

原文地址:https://www.cnblogs.com/bky-lwyh930214/p/12927132.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!