#themes
1 messages · Page 72 of 1
true
Make xen can do smth about it? I don’t know
i can add the whole apploader into the widget
but i wanted it kinda simple because of ressource thoughts

anymations and more stuff will need more ressources
i wanted a great design with as less as ressources i need
same for an interactive widget
the more i add the more drain i could produce
also as im not a js pro it would take a lotta tries :))
Well it’s android but... I like and love dark
A seamless dark widget that goes great with dark amoled wallpapers
(Just brainstorming)

yeah
i love the tiles idea
i made a concept yesterday but only got 20min time
i just copied stuff together
i changed that to different sizes
but i deleted everything
xD
Like iOS 14 a bit
But I like it
yeah i wanted ios14 kinda with the same style as envy dark icons
a widget which totally fits the icons
for my setup. i would change it to be versatile later
but yeah. its gone again
i think i will start something from scratch
if i got time
I always love minimalistic things
next weeks will be busy af and i shouldnt try hard to create
Imperfection is just that, not to much not to less
i think i should just wait
Imperfection is just that, not to much not to less
@gloomy solstice thanks
Ideas will come up if you won’t think of
@pallid heron looks sick
i really wanna use this theme
thanks @elfin sky but its really just copied stuff. the battery part is missing any infos also the textcolors should have more from the icons
i wanna make xen widgets 
i just can do xen
what do you use to make xen widgets
load the widget im working on on LS. do the changes, hit save und pull down to LS to see them instantly
works for me quite good.
better than coding on computer with emulation
true
this is why i never do theming work on my computer cuz i cant preview it immediately
yeah. i mean working on phone has many limits unfortunately
You could use openssh and edit files and also see directly how it changes
i could. yes
but as i dont got that sparetime i really work on them while having break at work, or sitting on toilet xDD
all widgets made while pooping

do Xen widgets scale themselves to the right size or is it different per screen res?
do Xen widgets scale themselves to the right size or is it different per screen res?
@elfin sky depends on how you code them
damn
if you do % they will scale depending on the screen
if you size things px they will stay
many if statements
@elfin sky naw its just css
My plan was to download a very simple widget that just shows time and battery
It was so confusing looking at the main.js
I gave up

Idk what widget to make
It was so confusing looking at the main.js
@gloomy solstice yeah to start is always confusing. w3schools and the docs of xenhtml and xeninfo were my friends
but the most credits i just can give my homeboy @pallid heron
he taught me that much ..
great dude ❤️
hmm saw it once but cant remember
So happy ideas @pallid heron ,I’m out after 7h car drive from vacation 
i remember that theme but i don’t remember the name
ig im using misa again.
What is a good minimal theme for ios 13.3.1
what tweak would i use to get rid of dock blur?
snowboard
snowboard
@winter pawn i alr have sb but i thought i cojld with it but i couldnt find the option
oh shit thats clean
It’s nothing special but I’m really loving this
I’ve shared this before elsewhere but felt like sharing it here
Wait you changed your setup? @wicked marsh
yeah
It looks nice!
tyyyy
Very different from the one you had before
Is that viola dark?
viola black
I like it
yeah its really nice with the all-black background
('ω')
(´ω`)
Amie now available in Gumroad, for Non-Jailbroken Users https://gum.co/GcDcF
cc @coarse scarab @pallid heron
do we have to buy it twice
@winter pawn if you bought it already from Packix just dm me
I have to add that in the Description
lel
alright
uploaded V 1.6 Update for Amie will be available as soon as Packix Approves..!
Will include a Milestone of more than 500 Icons themed
@winter pawn it’s the battlefield 4 rain background, it’s animated with frame :)
whats the tweaks to make my settings look like that i tried but i cant get close at all
please @me if you know
@gloomy solstice dang this is a fresh ss, full resolution and all. And non-standard icon layout, finally 
iOS 4 too, 10/10
good old times
You can downgrade if you want to have that same setup
thats some trippy shit
Your widgets, hand them over
@pallid heron must be testflight clear spaces
So it’s a stock feature? 
ye
Gotta give credit to Apple for this one then, they nailed the animation
indeed
bruh am in love with ios 14
i cant wait to jailbreak this bad boi
thats what im waiting for
i wont update withut a jb
too much essential tweaks 😄
i just had like 2-3 of them
others were totally for customization
Same, so tempted. I heard people are having issues with battery/performance though
So 14.3 or higher seems like it would be a good time to update, after the jb tweaks are updated as well ofc
pog

maybe a little bit
3mm
ill fix that, it triggers me rn
😄
@pallid heron im tryharding implement battery % into misa LS
@pallid heron im tryharding implement battery % into misa LS
@gloomy solstice you just want to show the percentage?
do you have a bit of knowledge of html css and js?
a bit like 0,1% 😉 i tried to search some widgets with % to learn from
but its hard
ok its really ez when you get the idea
every html element is in tags
like ```html
<div id="someId">AddPercentHere</div>
some id can be anything
like in your case you want it to be a battery percent
so just name it as battery for example
now this battery id will help you in javascript
if you see in this website
it gives you a detail how to get battery percentage
ye thats where i found percentage
<script>
api.resources.observeData(function (newData) {
// Set some data to document elements
document.getElementById('someId').innerHTML = newData.battery.percentage + "%";
});
</script>
just add this at the end
and you'll get the battery
ye thats what i found, my brain freezes where to implement into main.js
you don't even need it to implement it in main.js
you can also do it in the index.html
at the end
whats the difference / disadvantage?
no difference at all
we make different files to organize the code
whatever you do under script tag in html is same as using a js file
imagine it like this
you've got some code in the js file
you still need to tell the html file to locate the js file
when you locate it
what it does is like copy paste the entire code in that js file
into the html
thats how i want to learn too
ye, make sure to just copy the js part
not the <script></script>
tags are only an html thingy
api.resources.observeData(function (newData) {
// Set some data to document elements
document.getElementById('someId').innerHTML = newData.battery.percentage + "%";
});
``` copy this part
ye
div tags are mostly like block elements
it means that you can do anything with it
like add your text on it
and stuff
it makes like a small block whenever you define div tags
you can add as many as you want
a tags mean anchor tags
anchor tags are mostly used to redirect to a new url
for example <a href="https://google.com" >
<a id="Lmonth"></a><a id="Ldate"></a> <a id="battery">AddPercentHere</a>
between month and date it shows a little point
maybe the dot is coming from the js
you can make js to write html for you
thats how js works
for example you wanna show the month
yes
you need js to first connect to that id
month.innerHTML = monthsShort[d.getMonth()] + " " + "•" + " ";
yes
now look carefully.. he wrote month
it means month is just a variable
he must have declared it somewhere
like month = document.getElementById("monthid);
look at the battery code from earlier
does it look similar?
ye
ah so i could
let me try smth 😄
looks shit but i got the idea
this is so cool 😄
thanks a lot @pallid heron
no problem
we are using a library to get the time and date, thats a bit complicated for new comers, if you need help, let me know
wait what
you dont need to respring to see the changes in html
just in js
no
not even that

what i do is sometimes to see the changes, is go to settings
and disable and enable xenhtml
it kind of restarts xen
oh i did smth wrong
<a id="Lmonth"></a><a id="Ldate"></a>
</div>
<div id="battery">AddPercentHere</div>
added this </div> between
just wanted some space between date and battery
Doenst look good that way
why did it get a bigger text size? @pallid heron
i have no idea, need more context
sometimes doing random stuff brings weird results
its normal tho
what’s a good free simple theme for snowboard
Got it
pog
indeed
Approaching sex levels
v2 :)
Approaching sex levels
@Rick.#0313 pogggg
@gloomy solstice nice! sehr gut 🙂 nicht nur ein "edit" sondern mehr ein "add" gj
making widgets is fun actually 🙂
ofc if @pallid heron is teaching sth ;))
v2 :)
@polar tree miku dominos
@gloomy solstice nice! sehr gut 🙂 nicht nur ein "edit" sondern mehr ein "add" gj
@pallid heron with much help from @pallid heron 🙂 but I’m getting into it slowly

yeah @pallid heron is best
i just love this dude @pallid heron

you dont need to ping me you know that right? @pallid heron
wait @pallid heron
really? @pallid heron



what you doing
porn?
and the pings destroy picture
random stuff
bc notifs
true


random stuff
is always porn
¯_(ツ)_/¯

also
i wonder
@pallid heron how long does it take to retheme 1 page of icons with shortcut method?
5-10 seconds
cz
the shortcut already made
if the shortcut isnt made then takes a bit time
wow really? i thought its kinda pain in the ass
it is the first time
but shortcuts get saved
yeah first time
i meant
im considering to update
lel
because im out of ideas. and am really excited bc of what you showing off
yeee
join ios 14 gang

but does shortcuts have badges?
no
damn


i really just need snowboard
shit
i hate apple
cause of the shit they doing the SEPROM exploit will be made public soon
@polar tree miku dominos
@junior talon the essential app
is there kinda a library of HSWidget addons?
@pallid heron funny because I was just wondering the same thing and came here to ask
I use Muse for music
That’s weird
@pallid heron what’s that one called
wdym
do any of you guys want to be vigilantes?
@lavish mortar yes

any tweak like LockMusic for ios 13?
i aspire to be a vigilante
whats that shortcut for framing screenshots
MediaKit Mock-up at routine hub @winter pawn
There are two, one for each mock-up and one to combine them
The other is called mediakit collages
thanks
wallpaper
will worst envy dark go with this
if only i could not pay in paypal 
@pallid heron suggestion for amie black 
the normal one is grey
its bluish gray*
there's no nord colors for oled 
i have to be consistent with the https://nordtheme.com
A bit cluttered?
But icons are pog
Yes
@winter pawn one of my fav iconset
i wanted to get it so bad
i ended up creating a fake paypal account 
i put my birthdate as 1944 so if paypal ever asks for my id im screwed
@pallid heron when hndrk says hehe he means ->
and
@pallid heron i sent someone to your dms
who wants to buy the pngs for amie
lol
lol
@coarse scarab https://gum.co/GcDcF
true
I liked it yesterday, now I think it’s hideous
Yeah ik ik lol going back to standard
Definitely worth it
Hey everyone!
New to this server, but I think it will come in handy
I’m following a customization from /Kennyro
Installed a couple of tweaks, did some tuning, and this happens
Only for the prysm tweak
After spending a couple of hours, I still have no idea what is causing that. May anyone point it out?
Remove piracy pls
After spending a couple of hours, I still have no idea what is causing that. May anyone point it out?
@smoky kayak check if you set your settings text to white and then your background of the bars also to white
oh wait what
hes pirating?
For prysm
filter bypass
Pls remove it
Fair point
GO MOD MANDY 
Hi blobbyyy
Where my gold blue set up
youll get it once my bitchass jb decides to work

im probably gonna have to restore my iphone
lmao
idk
if rootfs doesnt work
only logical explanation
paras told me to just restore using succession so ill stay on 13.5.1 n
idk what im doing but like every 2 months i end up restoring 
anyone have any good cc ideas i want to try something other than prysm
Hmmm what help. @gloomy solstice
Hmmm what help. @gloomy solstice
@merry nimbus I believe basic basic basic html skills
Below newbie
Great
Gimme a sec
Sometimes after a respring or a certain % it places itself into a new line
The battery percentage
Hmm.
Im going to guess its mostly because of the spacing of the font space and the digits.
So 100% might be forced onto the 2nd row.
And 11% might have the room to go on the 1st row.
Is there a config to say how long this row can be
You could add a line break.
Oh on one lime.

ok sorry
😳
have you set the css class to centre the text?
you could put it into a <div> class and just increase the width of the <div> class
<div width=75px></div>
i think
im just gonna quickly excuse the fact your coding on your phone... try adding a css class for the battery date stuff to make sure its centre and give it a z-index of 50
text-align: center;
z-index: 50;
the z-index for should put it above anything else that could be forcing it onto the 2nd row
@gloomy solstice
for text-align center to work make sure the entire div's width is 100%

bruh y'all even know what z index means?
I googled it
have you used photoshop ever?
yea
consider z-index as layers
i was just using it to ignore all other stuff for the time being
yea ik
it could just be 2
i was just placing it at 50 incase he had other z-index in place
what's the issue? @gloomy solstice
he wants the month • date • battery% in one line
but the battery moves to the 2nd sometimes

But not on every percent
ez
Sometimes only after a respring for a short amount of time
Like 38% is okay, 43% isn’t
you kinda need to change the css in the #date
Yes
so it gets to other line because
the width is small
try adding width: 100%;
or
add a fixed value in px
try experimenting with it
What is a good battery faker to test that?
ye add width:100%; below padding
Do you have a hard time saying no to people that ask to borrow your phone? Now you can say, "Sorry, Low Battery." SorryLowBattery allows you to set a fake battery percentage from within the Settings.app. Then enable the toggle within settings or the convenient Flipswitch. SorryLowBattery fakes the statusbar Battery, Percentage sign and Lockscreen battery charging image. For ultimate sneakiness, you can hold down on the Flipswitch to present a low battery alert.
rob311
1.4.1-1
com.rob311.sorrylowbattery
Sorrylowbattery doesn’t work for xen 😂
It shows the real percentage, only fake for status bar
@merry nimbus
But I’ll charge now and check it later
hello designers
@gloomy solstice just remove that battery div temporary (cut) and just add 100% by hand xD
👍
if width 100% is too small make fontsize 14px
helllo @elfin sky
also you need to know that
Hello
if width 100% is too small make fontsize 14px
@pallid heron I thought about desecrating font size
Misa with the non layered border look uses box2 as the border
not box1
and box2 and box1 got a padding too
you can see it here
so even if you make the width 100% of #date it wont go until the edge because its inside box1
Ahhhhh
depends
Or is that even possible? First heard of style css today
yeah sure its possible
I ever thought where does the font size etc came from
but if you place that battery div inside that date div .. the date style parts also affect battery
just if you want the battery div different from the date
like different color size etc
it would make sense to add it into style css
and add all parameters i want
like statusbar elements
i really like the simplicity rn
I thought of a battery bar but not horizontal, but vertically
Would this look good?
@gloomy solstice, Couldn't find anything matching that search query!
Or the other way around
Yeeeeee
I’m so tempted to give it a try ig, because the alternative [[sakal]] completely freezes my device
And the dev isn’t responding since ages
hehe
Hm maybe this isn’t that hard to implement into misa
Gonna play abut with it

I’m so into widgets and editing rn
Lot of fun
There are no widgets to learn from with an alarm script in it ig

[[xeninfo]]
There are no widgets to learn from with an alarm script in it ig
@gloomy solstice docs?
this always helps
okay
xD
got no css yet :>
hmm strange
the width isnt 100%
but its set as 100%

Im already stuck
Added this to main.js
Seems ok for me
Then this
Some hints for me @pallid heron

Some hints for me @pallid heron
@gloomy solstice did you close the alarmtime and nextalarm divs?
;)))
every <div> needs a </div>
It hangs at the battery thingy I implemented
In settings? Yes
if you learn the scheme and stuff i would always recommend doing it on desktop with an code editor, it will highlight brackets and stuff so that you see whats going on and recognize errors much earlier
Is this the right log?
@pallid heron
2020-09-29 6:40:35 PM +0000) ERROR: SyntaxError: Invalid character '\u201c'
Left double quotation mark
so there is a misals.log or sth like that

everything
@gloomy solstice
these bruh
even filza editor has some highlightings
should get red if quotation is right
this happens if code is copied 🤣
Invalid character '\u201c'
(2020-09-29 6:48:53 PM +0000) ERROR: ReferenceError: Can't find variable: alarmString
Call Stack:
mainUpdate@file:///var/mobile/Library/Widgets/Universal/Misa%20LS_Mod/stuff/scripts/main.js:95:69
global code@file:///var/mobile/Library/Widgets/Universal/Misa%20LS_Mod/index.html:1:50
try to remove alarmString lines
From main?
Ah ok from index
from both
in the docs alarmString is stated under End 2.0 Additions
idk if that means its out of support
(2020-09-29 6:59:16 PM +0000) ERROR: TypeError: undefined is not an object (evaluating 'alarms[0].nextFireDateTimeParsed')
Call Stack:
mainUpdate@file:///var/mobile/Library/Widgets/Universal/Misa%20LS_Mod/stuff/scripts/main.js:95:67
global code@file:///var/mobile/Library/Widgets/Universal/Misa%20LS_Mod/index.html:1:50
@pallid heron
also remove that else part
and try to enable everything in xeninfo
i really dont know tbh whats going on
Statusbar works on imperfects
Always
(2020-09-29 7:05:19 PM +0000) ERROR: TypeError: undefined is not an object (evaluating 'alarms[0].nextFireDateTimeParsed')
Call Stack:
mainUpdate@file:///var/mobile/Library/Widgets/Universal/Misa%20LS_Mod/stuff/scripts/main.js:95:67
global code@file:///var/mobile/Library/Widgets/Universal/Misa%20LS_Mod/index.html:1:50
Is it because I just added the whole function just at the bottom?
Also tried this @pallid heron
No chance
Maybe @pallid heron could help

hes sleeping
Woops
I tried so many things
I think I’m done, can’t get it working
😂
Don’t know what that typeerror even means
The “TypeError: ‘undefined’ is not an object” error occurs when a property is accessed or a method is called on an undefined object.
idk
maybe xeninfo is kinda screwed. did you try to enable all grabbers?
maybe alarm is dependent on events or sth
make divs out of these <a>
Ye tried that
lmfao
lmfao
i mever looked clearly on your ss
after </html> the homepage is loaded. anything after that wont load at all
@gloomy solstice

Ye thanks a lot for the help
np
Im out for today 😉
youre welcome
Maybe paras knows smth
how are you all? i'm creating my first snowboard theme, i'd like to know how can I create alternate icons for one app? thanks 💌
@split sonnet do you have any reason to send this
@slate swallow
finished the simple setup
i rewrote the whole widget ^^
added wifi and cell
@pallid heron yeah, we kinda did widget edits a lot today 🙂 show off your setup

widget wen
Same@error
@gloomy solstice show me the error..
screenshot
Does anyone know how to theme preference bundles like CopyLog, BrowserDefult, Snowboard etc...? I’ve asked around but no one seems to know.
I restored root fs and I can't remember what my theme was called, anyone recognize this?
I also have no idea what I used to theme my battery so any tweaks for that would be helpful too
I also have no idea what I used to theme my battery so any tweaks for that would be helpful too
@spice scarab darkboardxs?
Someone in general referred me to juice and a free alternative called digitalbattery13
And don't know if that's the theme but I'll Check it out, thank you
this error is most likely because the term alarms isnt defined anywhere
which means either you wrote it wrong, or xeninfo isnt working
Hm ok, I copied that and double triple checked it
Must be xeninfo then
alarms
This object is an array of alarm entries, each with the following data:
alarms[0].title
title of the alarm
alarms[0].body
the text content of the alarm, either 'Alarm' (needs translating) or user-set in Clock app.
alarms[0].nextFireDateTimestamp
the next fire date of the alarm (either the first fire time, or next one after snoozing), as a UNIX timestamp
alarms[0].nextFireDateTimeParsed
The above, but parsed to e.g., 10:14am
Or am I reading this wrong?
None of those cmds work
After typing it again by hand
2020-09-30 5:09:51 AM +0000) ERROR: SyntaxError: Unexpected identifier 'nextFireDateTimeParsed'
(2020-09-30 5:17:45 AM +0000) ERROR: SyntaxError: Unexpected identifier 'nextFireDateTimeParsed'
Maybe a bit of progress @pallid heron ? Now I don’t get errors in the log... but then the doc must be wrong? I tried with the [0] thingy
try doing this.. after nextFireDateTimestamp;
write
for(let i=0; i<10; i++) {
console.log("alarm[i].nextFireDateTimeParsed");
}
and send me the screenshot of the logs @gloomy solstice
@pallid heron
oh wait
alarms?
rip
for(let i=0; i<10; i++) {
console.log(alarms[i].nextFireDateTimeParsed);
}
remove the inverted commas.. my bad
yup and should be alarms
big F
@gloomy solstice
bruh

ok remove the entire for loop and write console.log("alarmHour");

wait
again
my bad
should be console.log(alarmHour);
no inverted commas
when did #themes become smart wtf
@charred vapor bruh we always smart..
wheerever i go i spread smartness

2020-09-30 5:51:44 AM +0000) ERROR: ReferenceError: Can't find variable: alarmHour
Call Stack:
mainUpdate@file:///var/mobile/Library/Widgets/Universal/Misa%20LS_Mod/index.html:35:22
global code@file:///var/mobile/Library/Widgets/Universal/Misa%20LS_Mod/index.html:1:50

function mainUpdate(type){
if(type == "alarm"){
console.log(alarmString);
}
}
do this
But does it matter?
@gloomy solstice yes
now show me logs
Damn
Damn
@gloomy solstice maybe because ios changed some stuff for alarms
and xeninfo is not updated anymore

But I tried and now we know
But the best thing, I learned a lot 😉
Thanks a lot
if you wanna experiment with stuff always use console.log() the output is always only shown in the logs
i need wallpaper for homescreen
you need for lockscreen
bruh
i cant even see the time
what kind of wall is that,
the time is right there
better
With many help of nyu I made a Siri shortcut to change the image in the imperfection widget, maybe useful for further widgets or smth else @pallid heron
Should I share it or keep it because it’s a bad idea 😂?
How’s the icon?
Need some suggestions for improvements
@pallid heron inconsistent theme
why is messages and weather outlined but phone and camera not
ambre v2 is out https://frenchitouch.yourepo.com/
@pallid heron frenchitouch already made ios 14 like widgets for xen
and looks much better
Three fity
wait
this theme may be worth its price
the icons look good
300 icons + miscellaneous items + 8 widgets
bet
its weird
not my preference but idk its fine
LOL
isnt there a shortcut for setting up app shortcuts
wait ill find it
o
then do that
its way faster than the normal way anyway
no i mean
a shortcut for making that shortcut
a shortcut that helps you make the open app shortcuts
its broken for me because its meant for ios 14
but you get the gist
uh yeah brb
amazing shortcut by @pallid heron
It’s started off well, now I think I’m lost lol
Gotta shrink icons, might switch badges, align widgets, and even then I feel it won’t look right lol
Well it’s a big ass iPad for one so just easier on my hands, secondly shit being spread out looks unorganized
I might add more widgets or expand the current ones just to be bigger and slightly spread icons out more or adjust the rows v columns
Also gotta remove status bar but don’t wanna get a huge tweak for just that. On the other hand don’t want to have a bunch of smaller tweaks for it lol so I’m gonna shelf this for a week or so
i can get it for you
from filza
ook
is it piracy tho
hmmm
the real question
true
i cant be arsed
How can I help
You mean him providing a icon from a theme?
Is the pack free?
Do you own viola?
If you both own viola I see no issue
I mean if you’re transferring icons from a theme you don’t own it’s still piracy
But yes if you own it, perfectly fine
rick what ipad os you have?
bruh you lucky
I should’ve went to 13.7
ipados13.7 breaks xenhtml
They take a second to load for me
Rip
like it loads when in wiggle mode
but then hides when am not in that mode
its so weird
it works on lockscreen tho
I never tried that way, I still go through settings
seriously it isnt a matter of life and death
As long as you own it
oooo.. it works for me in settings ye.. but i like it in foregroubd
you want dms or here
Yeah I only use background lol and I don’t use any on LS





and 






maybe wont be a prob