1、登录界面自动更换Bing背景
在“背景”选择图片;
控制面板,任务计划,新增,计划的任务,用户定义的脚本;
用户账号要改成“root”,然后在“已启动”处打勾;在“计划”标签处,设置重复运行时间;
点“任务设置”,把下面的脚本全部复制,到“用户定义的脚本”里面粘贴,运行一下脚本;
#如需收集每日美图去掉下面注释设置保存文件夹路径,在FileStation里面右键文件夹属性可以看到路径
#savepath="/volume2/download/BingWallpaper"
#下载Bing图片
pic=$(wget -t 5 --no-check-certificate -qO- "https://www.bing.com/HPImageArchive.aspx?format=js&idx=0&n=1")
echo $pic|grep -q enddate||exit
link=$(echo https://www.bing.com$(echo $pic|sed 's/.\+"url"[:" ]\+//g'|sed 's/".\+//g'))
date=$(echo $pic|sed 's/.\+enddate[": ]\+//g'|grep -Eo 2[0-9]{7}|head -1)
tmpfile=/tmp/$date"_bing.jpg"
wget -t 5 --no-check-certificate $link -qO $tmpfile
[ -s $tmpfile ]||exit
rm -rf /usr/syno/etc/login_background*.jpg
cp -f $tmpfile /usr/syno/etc/login_background.jpg &>/dev/null
cp -f $tmpfile /usr/syno/etc/login_background_hd.jpg &>/dev/null
cp -f $tmpfile /usr/syno/synoman/webman/resources/images/1x/default_login_background/dsm7_01.jpg &>/dev/null
cp -f $tmpfile /usr/syno/synoman/webman/resources/images/2x/default_login_background/dsm7_01.jpg &>/dev/null
title=$(echo $pic|sed 's/.\+"title":"//g'|sed 's/".\+//g')
copyright=$(echo $pic|sed 's/.\+"copyright[:" ]\+//g'|sed 's/".\+//g')
word=$(echo $copyright|sed 's/(.\+//g')
if [ ! -n "$title" ];then
cninfo=$(echo $copyright|sed 's/,/"/g'|sed 's/,/"/g'|sed 's/(/"/g'|sed 's/ //g'|sed 's/\//_/g'|sed 's/)//g')
title=$(echo $cninfo|cut -d'"' -f1)
word=$(echo $cninfo|cut -d'"' -f2)
fi
#将图片应用于登陆界面
sed -i s/login_background_customize=.*//g /etc/synoinfo.conf
echo "login_background_customize=\"yes\"">>/etc/synoinfo.conf
sed -i s/login_welcome_title=.*//g /etc/synoinfo.conf
echo "login_welcome_title=\"$title\"">>/etc/synoinfo.conf
sed -i s/login_welcome_msg=.*//g /etc/synoinfo.conf
echo "login_welcome_msg=\"$word\"">>/etc/synoinfo.conf
#将图片保存到指定路径
if (echo $savepath|grep -q '/') then
cp -f $tmpfile "$savepath/$date@$title-$word.jpg"
fi
#清除临时文件
rm -rf /tmp/*_bing.jpg
2、修改登陆框主题为半透明
半透明有两种效果,白色比较简单,可以直接在页脚信息输入以下代码:
<style type="text/css">
.tab-panel {
background: rgba(255,255,255,0.5) !important;
}
.login-textfield .input-container input {
background-color: transparent !important;
}
body {
-webkit-filter:brightness(1);
-o-filter:brightness(1);
-moz-filter:brightness(1);
filter:brightness(1);
}
</style>
推荐用脚本,可两种效果切换
参数 1:安装磨砂玻璃效果补丁,2:安装黑色透明效果补丁,3:卸载效果补丁
0、上传脚本到群晖
1、开启ssh并进入群晖后台
2、sudo -i 切换root用户
3、cd 《上传脚本的路径》 进入脚本目录
4、chmod 755 install.sh 赋予脚本运行权限
5、./install.sh 运行脚本替换或还原
https://github.com/onlypeng/dsm7_login_translucent