BetterDiscordPlugin
Discord
Plugin
https://github.com/NawaNae/RandomBackground
This is a betterdiscord plugin which make your discord change background image (from a customized image list) everytime when it's starting.
--bgImage:
in theme file contains trasparency
if not, your new background will be covered by theme's background
(you can mix both background images because I don't replace the background of theme, the background of this plugin is the bottommost layer, body tag, of discord)
or set it to following statement
(transparent, theme's background will not effect this plugin and be invisible)
--bgImage:none;
or
--bgImage:rgba(0,0,0,0);
body
{
background-attachment: fixed;
background-position: 100%;
background-size: cover;
background-repeat: no-repeat;
}
in this mode you can easily add new image, but can't assign different settings of diffenert images.
โโโโ{
โโโโ "imageList":
โโโโ [
โโโโ "http://imgur.com/ljQVAD9.png",
โโโโ "http://imgur.com/KbfvL2h.png",
โโโโ "http://imgur.com/h9Bm0EF.png",
โโโโ /*...image sources...,*/
โโโโ ]
โโโโ}
โโโโ{
โโโโ "imageList":
โโโโ [
โโโโ {
โโโโ "src":"http://imgur.com/ljQVAD9.png",
โโโโ "background-size":"cover"
โโโโ },
โโโโ {
โโโโ "img":"http://imgur.com/KbfvL2h.png",
โโโโ "background-size":"100% 100%"
โโโโ },
โโโโ {
โโโโ "image":"http://imgur.com/h9Bm0EF.png",
โโโโ "background-color":"rgba(255,235,235,0.8)",
โโโโ "background-size":"cover",
โโโโ "background-repeat":"repeat-x",
โโโโ "background-position":"top center"
โโโโ }
โโโโ ]
โโโโ}
โโโโ{
โโโโโ "imageList":
โโโโโ [
โโโโโ /*normal image*/
โโโโโ "http://imgur.com/ljQVAD9.png",
โโโโโ ,/*special setting*/
โโโโโ {
โโโโโ "src":"http://imgur.com/KbfvL2h.png",
โโโโโ "background-size":"100% 100%"
โโโโโ },
โโโโโ "http://imgur.com/h9Bm0EF.png",
โโโโโ /*...other images...*/
โโโโโ ]
โโโโ}