]> git.saurik.com Git - winterboard.git/commitdiff
Remove the Saurik theme: it is ugly and unneeded.
authorJay Freeman (saurik) <saurik@saurik.com>
Tue, 18 Oct 2011 06:03:45 +0000 (06:03 +0000)
committerJay Freeman (saurik) <saurik@saurik.com>
Tue, 18 Oct 2011 06:03:45 +0000 (06:03 +0000)
Saurik.theme/Bundles/com.apple.springboard/SBDockBG.png [deleted file]
Saurik.theme/Bundles/com.apple.springboard/en.lproj/SpringBoard.strings [deleted file]
Saurik.theme/Info.plist [deleted file]
Saurik.theme/Private/Plant.png [deleted file]
Saurik.theme/Private/Rock.png [deleted file]
Saurik.theme/UISounds/Tock.caf [deleted symlink]
Saurik.theme/Wallpaper.html [deleted file]

diff --git a/Saurik.theme/Bundles/com.apple.springboard/SBDockBG.png b/Saurik.theme/Bundles/com.apple.springboard/SBDockBG.png
deleted file mode 100644 (file)
index a8c73e6..0000000
Binary files a/Saurik.theme/Bundles/com.apple.springboard/SBDockBG.png and /dev/null differ
diff --git a/Saurik.theme/Bundles/com.apple.springboard/en.lproj/SpringBoard.strings b/Saurik.theme/Bundles/com.apple.springboard/en.lproj/SpringBoard.strings
deleted file mode 100644 (file)
index a6d7a38..0000000
+++ /dev/null
@@ -1 +0,0 @@
-"AWAY_LOCK_LABEL" = "slide to saurik";
diff --git a/Saurik.theme/Info.plist b/Saurik.theme/Info.plist
deleted file mode 100644 (file)
index a62553c..0000000
+++ /dev/null
@@ -1,20 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
-<plist version="1.0"><dict>
-
-<key>FontName-Helvetica</key>
-<string>Courier New</string>
-
-<key>UndockedIconLabelStyle</key>
-<string>/*font-family: monospace; font-size: 13px;*/ color: white</string>
-
-<key>DockedIconLabelStyle</key>
-<string>/*font-family: monospace; font-size: 13px;*/ color: burlywood</string>
-
-<key>TimeStyle</key>
-<string>/*font-family: monospace; font-size: 16px*/</string>
-
-<!--key>ComposeStoreIcons</key>
-<false/-->
-
-</dict></plist>
diff --git a/Saurik.theme/Private/Plant.png b/Saurik.theme/Private/Plant.png
deleted file mode 100644 (file)
index cdf4a24..0000000
Binary files a/Saurik.theme/Private/Plant.png and /dev/null differ
diff --git a/Saurik.theme/Private/Rock.png b/Saurik.theme/Private/Rock.png
deleted file mode 100644 (file)
index 005aa07..0000000
Binary files a/Saurik.theme/Private/Rock.png and /dev/null differ
diff --git a/Saurik.theme/UISounds/Tock.caf b/Saurik.theme/UISounds/Tock.caf
deleted file mode 120000 (symlink)
index 452b17b..0000000
+++ /dev/null
@@ -1 +0,0 @@
-/System/Library/Audio/UISounds/unlock.caf
\ No newline at end of file
diff --git a/Saurik.theme/Wallpaper.html b/Saurik.theme/Wallpaper.html
deleted file mode 100644 (file)
index e439e2d..0000000
+++ /dev/null
@@ -1,62 +0,0 @@
-<?xml version="1.0" encoding="UTF-16"?>
-<html><head>
-    <base href="Private/"/>
-    <!--meta name="viewport" content="width=320, minimum-scale=1.0, maximum-scale=1.0"/-->
-    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
-
-    <style>
-        body {
-            background-color: black;
-            margin: 0;
-            padding: 20px 0 0 0;
-            height: 442px;
-            width: 320px;
-        }
-
-        img {
-            -webkit-transition-property: opacity;
-            -webkit-transition-duration: 2s;
-            position: absolute;
-            width: 320px;
-            height: auto;
-        }
-
-        img.fade-out {
-            opacity: 0;
-        }
-
-        img.fade-in {
-            opacity: 1;
-        }
-    </style>
-</head><body style="color: black">
-    <img id="one"/>
-    <img id="two"/>
-
-    <script>
-        var images = ['Rock.png', 'Plant.png'];
-        var index = 0;
-
-        var fade_in = one;
-        var fade_out = two;
-
-        fade_in.src = images[0];
-        fade_out.src = images[images.length - 1];
-
-        var fade = function () {
-            fade_in.src = images[index];
-            index = (index + 1) % images.length;
-
-            fade_in.className = 'fade-out';
-            fade_out.className = 'fade-in';
-
-            var fade_tmp = fade_in;
-            fade_in = fade_out;
-            fade_out = fade_tmp;
-
-            setTimeout(fade, 15000);
-        };
-
-        fade();
-    </script>
-</body></html>