initial commit

This commit is contained in:
Micah Gomez 2019-05-26 14:01:00 -06:00
parent d9c0a95425
commit 2646e94ac0
17 changed files with 211 additions and 0 deletions

2
.gitignore vendored Normal file
View file

@ -0,0 +1,2 @@
.DS_Store

View file

@ -0,0 +1,11 @@
Package: com.mpg13.xenimatedrecharged
Name: Xenimated: Recharged
Depends: com.matchstic.xenhtml, com.junesiphone.xeninfo
Version: 1.0
Architecture: iphoneos-arm
Description: XenHTML theme that adds media to your lockscreen when charging.
Homepage: https://mpg13.github.io
Depiction: https://mpg13.github.io/repo/depicts/xenimatedrecharged.html
Maintainer: MPG13 <micahplacido@gmail.com>
Author: MPG13 <micahplacido@gmail.com>
Section: Addons (XenHTML)

View file

@ -0,0 +1,24 @@
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Xenimated</title>
<style>
body, html {
height: 100%;
margin: 0;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
</style>
</head>
<body>
<!--<img alt=" " id="wallpaper" height="100%">-->
<div class="wallpaper"></div>
<script src="./main.js"></script>
</body>
</html>

View file

@ -0,0 +1,18 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<array>
<dict>
<key>name</key>
<string>wallgif</string>
<key>type</key>
<string>edit</string>
<key>label</key>
<string>Gif file name</string>
<key>default</key>
<string>apple.gif</string>
</dict>
</array>
</plist>

View file

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>isFullscreen</key>
<true/>
<key>useOptionsPlist</key>
<true/>
</dict>
</plist>

File diff suppressed because one or more lines are too long

View file

@ -0,0 +1,15 @@
var wallpaper = "url('../../Xenimated/"+wallgif+"')";
function mainUpdate(type){
if(type == "battery"){
var chargeText = (batteryCharging);
if (chargeText){
document.body.style.backgroundImage = wallpaper;
}
else{
document.body.style.backgroundImage = "none";
}
}
}

View file

@ -0,0 +1,18 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<array>
<dict>
<key>name</key>
<string>wallgif</string>
<key>type</key>
<string>edit</string>
<key>label</key>
<string>Gif file name</string>
<key>default</key>
<string>apple.gif</string>
</dict>
</array>
</plist>

View file

@ -0,0 +1,24 @@
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Xenimated</title>
<style>
body, html {
height: 100%;
margin: 0;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
</style>
</head>
<body>
<!--<img alt=" " id="wallpaper" height="100%">-->
<div class="wallpaper"></div>
<script src="./main.js"></script>
</body>
</html>

View file

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>isFullscreen</key>
<true/>
<key>useOptionsPlist</key>
<true/>
</dict>
</plist>

File diff suppressed because one or more lines are too long

View file

@ -0,0 +1,15 @@
var wallpaper = "url('../../Xenimated/"+wallgif+"')";
function mainUpdate(type){
if(type == "battery"){
var chargeText = (batteryCharging);
if (chargeText){
document.body.style.backgroundImage = wallpaper;
}
else{
document.body.style.backgroundImage = "none";
}
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 335 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 389 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 536 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 223 KiB