initial commit
This commit is contained in:
parent
d9c0a95425
commit
2646e94ac0
17 changed files with 211 additions and 0 deletions
2
.gitignore
vendored
Normal file
2
.gitignore
vendored
Normal file
|
@ -0,0 +1,2 @@
|
|||
|
||||
.DS_Store
|
11
XenimatedRecharged/DEBIAN/control
Normal file
11
XenimatedRecharged/DEBIAN/control
Normal 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)
|
|
@ -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>
|
|
@ -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>
|
|
@ -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>
|
32
XenimatedRecharged/var/mobile/Library/LockHTML/XenimatedCharge/jquery-1.2.6.min.js
vendored
Normal file
32
XenimatedRecharged/var/mobile/Library/LockHTML/XenimatedCharge/jquery-1.2.6.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
|
@ -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";
|
||||
}
|
||||
}
|
||||
}
|
|
@ -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>
|
|
@ -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>
|
|
@ -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>
|
32
XenimatedRecharged/var/mobile/Library/SBHTML/XenimatedCharge/jquery-1.2.6.min.js
vendored
Normal file
32
XenimatedRecharged/var/mobile/Library/SBHTML/XenimatedCharge/jquery-1.2.6.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
|
@ -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";
|
||||
}
|
||||
}
|
||||
}
|
BIN
XenimatedRecharged/var/mobile/Library/Xenimated/apple.gif
Normal file
BIN
XenimatedRecharged/var/mobile/Library/Xenimated/apple.gif
Normal file
Binary file not shown.
After Width: | Height: | Size: 2.2 MiB |
BIN
XenimatedRecharged/var/mobile/Library/Xenimated/broken.gif
Normal file
BIN
XenimatedRecharged/var/mobile/Library/Xenimated/broken.gif
Normal file
Binary file not shown.
After Width: | Height: | Size: 335 KiB |
BIN
XenimatedRecharged/var/mobile/Library/Xenimated/earth.gif
Normal file
BIN
XenimatedRecharged/var/mobile/Library/Xenimated/earth.gif
Normal file
Binary file not shown.
After Width: | Height: | Size: 389 KiB |
BIN
XenimatedRecharged/var/mobile/Library/Xenimated/street.gif
Normal file
BIN
XenimatedRecharged/var/mobile/Library/Xenimated/street.gif
Normal file
Binary file not shown.
After Width: | Height: | Size: 536 KiB |
BIN
XenimatedRecharged/var/mobile/Library/Xenimated/triangle.gif
Normal file
BIN
XenimatedRecharged/var/mobile/Library/Xenimated/triangle.gif
Normal file
Binary file not shown.
After Width: | Height: | Size: 223 KiB |
Reference in a new issue