


I'm trying to make a premium glass dock on KWGT. Did I succeed?
؟/١٠



؟/١٠
Ik music widgets are dime a dozen here, but i decided to make my own, inspired by the design of Apple's Music widget and soon will be shared for all.
A general music/media player to be used however in 2X2 and 4X2 sizes.
So far the features i've gotten done are:
•Proper icons for Spotify, Apple Music, Soundcloud, Youtube/YT-Music, Pandora and Tidal.
• 2 different color modes (Ambient Blur or Standard App colors)
•Darkmode support for the Standard App color mode, with tinting on the icons/album cover using hidden buttons.
•Ambient Blur also generates colors to fill in, so you can really get some good looking colors and moods (may vary depending on Album colors)
•Two styles: a Button style to show the Pause/Play button and a Progress style to show the music progression (you can still pause/play via the hidden button too)
•The Progress style can also differentiate between Standard music playing or Live music i.e. Apple Music Radio stations or whatever is considered Live by Android (using either 00:00 or - -:- - as the music duration)
•After closing a music app fully, it will switch to a No Recently Played Music status (due too how Android now clears album cache instead of keeping it in memory for optimization)
•You can toggle an earbud icon and choose between different styles i.e. airpods classic, pros or headsets.(or add your own once i have uploaded the widget)
What do you guys think so far? I also plan to make this widget unlocked/open source so you can customize elements however you'd like and maybe add more code to support more apps. (Or just study how it works)
I honestly have a frustrating time finding a widget that actually has the clock front and center it's so stupid, anyone have decent packs that have the time as priority?
(Sample pic for blurred komponent)
Does anyone know, or have any resources they can point to, on how to make a komponent in kwgt or klwp with blurred background?
And how to make klwp switch wallpapers (and maybe optionally colors) periodically?
Any help would be really appreciated.
i have a google widget but when i click it the font changes i think the file corrupted and i forget how i get this clock from can anyone send me the clock i'm trying to open please
A complete football widget is a truly huge project; I hope I can finish it before I die.
Free font typeface pack is free which is really cool https://creativemarket.com/free-goods
I am trying to format text in a text field such that a calander event that is an all day event shows only the day and title, and if it is not an all day event it shows day start time and title.
The following if statement works to produce X if the event is all day and Y if it is not:
$if(ci(allday, 5)=1,"x","y")$
This statement shows the proper formatting for an all-day event:
$df(EEE hh:mm a, ci(start, 0))$ - $ci(title, 0)$
This statement shows the proper formatting for an event that is NOT all day:
$df(EEE hh:mm a, ci(start, 0))$ - $ci(title, 0)$
BUT when I put it all together like this:
$if(ci(allday, 0)=1,$df(EEE, ci(start, 0))$ $ci(title, 0)$,df(EEE hh:mm a, ci(start, 0))$ - $ci(title, 0)$)$
It does not work
err: Parenthesis mismatch
err: expression can't start with a function argument separator