#development

1 messages · Page 147 of 1

placid kraken
#

#RRGGBBAA

lunar ginkgo
#

alr thanks

tough shadow
#

teasing my new theme

lunar ginkgo
#

so

#

wait

#

1s

cloud yacht
#

wide apps

tough shadow
#

Heres the new verison

lunar ginkgo
#

muteButton.backgroundColor = color; this is what i wanna change

#

and i put

#

color = [GcColorPickerUtils colorFromDefaults:@"me.seroina.amethyst" withKey:@"color" fallback:@"0000FF"];

#

and at the top: UIColor *color;

placid kraken
#

you can just directly declare it

UIColor *color = [bla];
lunar ginkgo
#

ohhh

#

ok

#

thanks

placid kraken
#

you only declare it at the top if you wanna use it in other places lmao

#

its like a global

lunar ginkgo
#

i might want to

#

but i get the error "Tweak.x:4:19: error: use of undeclared identifier 'GcColorPickerUtils'"

#

even tho i have it installed

#

why is that?

placid kraken
#

its like doing

let something = null;

function doSomeStuff() {
    something = getSomething();
    explosion.xyz = something;
}
``` instead of doing
```ts
function doSomeStuff() {
    const something = getSomething();
    explosion.xyz = something;
}
lunar ginkgo
#

yeah its prob better if its longer

#

idk

placid kraken
#

put this in your makefile

Flora_LIBRARIES = gcuniversal
#

or well

#

replace Flora with your tweak name

lunar ginkgo
#

ok

lunar ginkgo
#

$(TWEAK_NAME)_LIBRARIES = gcuniversal

placid kraken
#

#import <GcUniversal/GcColorPickerUtils.h>

lunar ginkgo
#

ahh i imported in the other class

#

forgor

#

sorry

placid kraken
#

lolol

lunar ginkgo
#

💀

#

how do i debug if i have no idea

#

is there like a beginer

#

tutorial

placid kraken
#

for debugging? not really

#

Console.app or Antoine for getting crash logs and NSLogs

#

other than that you kinda just need to ask here or figure it out

acoustic imp
acoustic imp
#

mb for ping

placid kraken
#

that too yep

#

lol i really dont care if you ping me go ahead

lunar ginkgo
#

ok

#

thanks

lunar ginkgo
placid kraken
#

then i filter by [Flora]

lunar ginkgo
#

ohhh

acoustic imp
#

or just do sm hjdhfdjhf

#

and filter by that

#

i use my tweak name plus like a number or two

placid kraken
acoustic imp
cloud yacht
#

Just have a unique tweak name

acoustic imp
placid kraken
#

even if you have a unique tweak name there might be other things in the logs which include your tweak name but arent from you

#

thats why i do [Flora] with brackets

cloud yacht
placid kraken
#

to make sure its specific

cloud yacht
#

also its not bad seeing your tweak was injected

lunar ginkgo
#

yeah but what if the tweak just doesnt work

#

like you launch it

#

and nothing shows up

acoustic imp
lunar ginkgo
#

jk

#

im not that guy

cloud yacht
#

someone should make a tweak that just breaks logging system wide

#

then bundle it under another tweak so devs don't know why they don't get logs

twilit jungle
#

Lol I meant cap on three finger gesture…
But your device uses the older status bar classes.

acoustic imp
cloud yacht
placid kraken
#

personally i use sprintf

lunar ginkgo
#

wtf did i do 😭

#

i broke it

cloud yacht
lunar ginkgo
#
 muteButton.backgroundColor = color;```
#

what did i do wrong

#

i did #import <GcUniversal/GcColorPickerUtils.h>

placid kraken
# cloud yacht I don't like running

GoOutside
Locks your phone permanently until it can detect 10,000 steps walked by your fitness app.

Author
Tim Apple

Version
1.0.3

Price
Effort

Repo
Apple

Bundle ID
com.apple.stopbeinglazy

Powered by Canister • Today at 17:10

lunar ginkgo
cloud yacht
lunar ginkgo
#

in tweak.x

cloud yacht
#

or make a tweak to increase the step counter

lunar ginkgo
#
#import <GcUniversal/GcColorPickerUtils.h>

@interface MRUVolumeBackgroundViewController : UIViewController
@end

@interface MRUVolumeBackgroundView : UIView
@property (retain, nonatomic) UIView *primaryAssetView;
@end

%hook MRUVolumeBackgroundViewController

- (void)viewWillAppear:(BOOL)arg0 {
    %orig;

    MRUVolumeBackgroundView *view = (MRUVolumeBackgroundView *)[self view];
    UIButton *muteButton = [UIButton buttonWithType:UIButtonTypeCustom];
    UIColor *color = [GcColorPickerUtils colorFromDefaults:@"me.seroina.amethyst" withKey:@"color" fallback:@"0000FF"];
    muteButton.backgroundColor = color; // Using color variable instead of [UIColor color]
    muteButton.layer.cornerRadius = 40 / 2; // for a circle its half the width
    
    // Set SF Symbol
    UIImageSymbolConfiguration *config = [UIImageSymbolConfiguration configurationWithPointSize:24];
    UIImage *speakerSlashImage = [[UIImage systemImageNamed:@"speaker.slash" withConfiguration:config] imageWithRenderingMode:UIImageRenderingModeAlwaysTemplate];
    [muteButton setTintColor:[UIColor whiteColor]];
    [muteButton setImage:speakerSlashImage forState:UIControlStateNormal];

    muteButton.translatesAutoresizingMaskIntoConstraints = NO;
    [view addSubview:muteButton];

    [NSLayoutConstraint activateConstraints:@[
        [muteButton.widthAnchor constraintEqualToConstant:40],
        [muteButton.heightAnchor constraintEqualToConstant:40],
        [muteButton.centerXAnchor constraintEqualToAnchor:view.centerXAnchor],
        [muteButton.topAnchor constraintEqualToAnchor:view.primaryAssetView.bottomAnchor constant:-10]
    ]];
}

%end ```
#

thanks to fiore

acoustic imp
#

did u add teh view

#

idk i cant see

#

yes

lunar ginkgo
#

i think i did

#

u want my root.plist?

placid kraken
#

whats actually wrong lol

#

like whats broken

lunar ginkgo
#

i go into settings

#

and no prefs

#

its just blank

acoustic imp
#

oh u should have said that

placid kraken
#

your plist is likely wrong then

acoustic imp
#

show ur plist

lunar ginkgo
#

oh

#

i wrote user

#

LOL

#

im so dumb

#

nvm!

acoustic imp
#

like i said, read ur stuff before asking

lunar ginkgo
#

asduiohaduioahsdu

placid kraken
lunar ginkgo
placid kraken
#

you usually find the issue when explaining your code to someone else

cloud yacht
#

you can also use a normal rubber duck or a friend

lunar ginkgo
#

ohh

placid kraken
#

so theres this thing called a duck, which you explain your code to

cloud yacht
#

In software engineering, rubber duck debugging (or rubberducking) is a method of debugging code by articulating a problem in spoken or written natural language. The name is a reference to a story in the book The Pragmatic Programmer in which a programmer would carry around a rubber duck and debug their code by forcing themselves to explain it, l...

placid kraken
#

and then you find the issue

lunar ginkgo
#

never heard of a duck!

#

but

#

ill get one

placid kraken
#

i dont have one

#

if my code doesnt work i just cope

cloud yacht
#

you can use anything

acoustic imp
cloud yacht
#

I usuaally use discord for rubber dugging

acoustic imp
#

im jk

lunar ginkgo
#

yay it works

placid kraken
#

i usually annoy nightwind or fiore if it doesnt work

placid kraken
#

im sure they really love me

turbid fjord
placid kraken
#

(im gonna get murdered soon)

acoustic imp
#

night alr want to for me

sacred orbit
#

does anybody know how to solve this issue?

/Users/haxi0/theos/sdks/iPhoneOS15.6.sdk/System/Library/Frameworks/Comet.framework/Modules/Comet.swiftmodule/arm64e-apple-ios.private.swiftinterface:13:8: error: no such module '_StringProcessing'
import _StringProcessing
       ^
Sources/Lunar/Classes/TweakPreferences.swift:1:8: error: failed to build module 'Comet' for importation due to the errors above; the textual interface may be broken by project issues or a compiler bug
import Comet```
twilit jungle
#

swift moment

sacred orbit
#

bruh

lunar ginkgo
#

so i was looking at

#

and the volume is Deprecated

acoustic imp
#

haha

lunar ginkgo
#

and this makes NO sense: parentView.backgroundColor = .clear let volumeView = MPVolumeView(frame: parentView.bounds) parentView.addSubview(volumeView)

acoustic imp
#

its swift

#

u gtoa make it be objc

lunar ginkgo
#

so how would i make that to objc

acoustic imp
#

top right*

lunar ginkgo
#

top left

acoustic imp
#

right*

#

theres a drop down

lunar ginkgo
#

what about top right

#

OHH

#

i see

#

thanks

#

uh oh

#

its the same code

twilit jungle
#

Half of apple docs don't have obj-c anymore

acoustic imp
lunar ginkgo
#

i changed it

#

but it didnt change the text

acoustic imp
#

🤷‍♂️

#

what r u tryign to do ?

lunar ginkgo
#

mute volume

acoustic imp
#

theres a method for that lol

#

i fg where but i thiink its on like SBVolume audio or sm

#

or SBMediaController

#

look in head objects in flex

lunar ginkgo
#

1s

acoustic imp
#

nvm

lunar ginkgo
#

wdym

acoustic imp
#

its not there

lunar ginkgo
#

awh crap

#

so that means i have to make it?

acoustic imp
#

Jk I was right 💪

#

(I was looking at the wrong thing)

lunar ginkgo
#

oh 🙏

#

thank god

#

wait so would i do muteButtonTouchDown

#

and then whatever the code is

#
    NSLog(@"Mute button pressed down");
}```
acoustic imp
#

whats muteButtonTouchDown ?

lunar ginkgo
#

like

#

when the button is pressed

acoustic imp
#

ur method for ur UIButton ?

lunar ginkgo
#

no its just muteButton

hasty ruin
#

16player eta is this friday?

acoustic imp
#

hes doinf obf

lunar ginkgo
#

wait i would add

#

[muteButton addTarget:self action:@selector(muteButtonTouchDown) forControlEvents:UIControlEventTouchDown];

#

and then that

#

right

slim bramble
acoustic imp
#

idk try it

lunar ginkgo
#

wait so when i do the nslog

#

i do

hasty ruin
acoustic imp
lunar ginkgo
acoustic imp
#

do u have a mac?

lunar ginkgo
acoustic imp
#

then theirs not rly a point

lunar ginkgo
#

well cant i see in antoine?

acoustic imp
#

yea but wheres ur button gone be?

lunar ginkgo
#

in volume

acoustic imp
#

ohhh

#

yea go do what u said

lunar ginkgo
#

idk how to hide this: ethiweriewr

acoustic imp
#

y would u hide it?

lunar ginkgo
#

it looks crouded

acoustic imp
#

then move ur button

lunar ginkgo
#

idk

acoustic imp
#

sigh*

lunar ginkgo
#

wait

acoustic imp
#

DW about rn

lunar ginkgo
#

but anyways

#

yea

acoustic imp
#

get it working first

lunar ginkgo
#

so can i do anything PHYSICAL?

#

so i can see

#

that it works

acoustic imp
#

show me the button in flex

lunar ginkgo
#

1s

acoustic imp
#

like have it selcted so i can see the views arounf it

#

in the list thing

#

actully

#

just chnage the bacgorund color

#

simple

lunar ginkgo
acoustic imp
#

sedn ur code 🙄

#

?

lunar ginkgo
#

sorry

#

i got distracted

lunar ginkgo
acoustic imp
#

nvm

hasty ruin
#

nah the control file

acoustic imp
#

i got it

lunar ginkgo
#

ok

lunar ginkgo
lunar ginkgo
acoustic imp
#

im doing it

#

BUT

#

i dont want you to copy paste

lunar ginkgo
#

%hook SBVolumeControll

#

i wont

acoustic imp
#
    MRUVolumeBackgroundView *view = (MRUVolumeBackgroundView *)[self view];
``` whats is this
lunar ginkgo
#

wait

#

lemme check

#

fiore did this

#

imma look

#

oh

#

its the backround view

#

like behind the volume

#

to the side*

acoustic imp
#

ohhhhhhh

#

why didnt we just hook that view?

lunar ginkgo
#

because

#

MRUVolumeBackgroundViewController

#

is better

acoustic imp
#

aslo

#
``` y not viewDidLoad ?
#

idk

#

gime the .h file

#

nvm

lunar ginkgo
acoustic imp
#

nvm

lunar ginkgo
#

ok

#

ill try

acoustic imp
#

remove the ```objc

lunar ginkgo
#

yea

#

ik

#

Tweak.x:56: warning: missing %end (%hook opened at Tweak.x:14 extends to EOF)
make[3]: *** [/home/test/theos/makefiles/instance/rules.mk:370: /home/test/bettervolume/.theos/obj/debug/arm64e/Tweak.x.m] Error 1
make[2]: *** [/home/test/theos/makefiles/instance/library.mk:52: /home/test/bettervolume/.theos/obj/debug/arm64e/Amethyst.dylib] Error 2
make[1]: *** [/home/test/theos/makefiles/instance/library.mk:37: internal-library-all_] Error 2
make: *** [/home/test/theos/makefiles/master/rules.mk:146: Amethyst.all.tweak.variables] Error 2

acoustic imp
#

👍

#

oh FG sm to

lunar ginkgo
#

oh wait

#

nonono

#

lemme try something

acoustic imp
#

no i forgot smthing else

lunar ginkgo
#

nvm

#

still didnt wor

lunar ginkgo
#

thanks for the help btw

acoustic imp
#

try that

#

np

lunar ginkgo
#

logos: warnings being treated as errors
Tweak.x:59: warning: missing %end (%hook opened at Tweak.x:16 extends to EOF)
make[3]: *** [/home/test/theos/makefiles/instance/rules.mk:370: /home/test/bettervolume/.theos/obj/debug/arm64e/Tweak.x.m] Error 1
make[2]: *** [/home/test/theos/makefiles/instance/library.mk:52: /home/test/bettervolume/.theos/obj/debug/arm64e/Amethyst.dylib] Error 2
make[1]: *** [/home/test/theos/makefiles/instance/library.mk:37: internal-library-all_] Error 2
make: *** [/home/test/theos/makefiles/master/rules.mk:146: Amethyst.all.tweak.variables] Error 2

eternal rain
#

can anyone tell me what the difference between ppl and sptm is

acoustic imp
#

sptm is PPL on crack (i think)

#

on A15 + on 17.0+

eternal rain
#

alr thanks

lunar ginkgo
acoustic imp
#

tbh idk bc the %end is there

#

idk

#

make clean ?

lunar ginkgo
#

ok

#

1s

#

it still errors

#

OH

#

IM DUMB

#

wait

#

not really

#

but

#

@acoustic imp Tweak.x:29:20: error: property 'muteButtonP' not found on object of type 'MRUVolumeBackgroundView *' muteButton = view.muteButtonP; ^ Tweak.x:30:27: error: property 'muteButtonP' not found on object of type 'MRUVolumeBackgroundView *' [view addSubview:view.muteButtonP]; ^ 2 errors generated. make[3]: *** [/home/test/theos/makefiles/instance/rules.mk:374: /home/test/bettervolume/.theos/obj/debug/arm64e/Tweak.x.57800352.o] Error 1 ==> Compiling Tweak.x (arm64)… Tweak.x:29:20: error: property 'muteButtonP' not found on object of type 'MRUVolumeBackgroundView *' muteButton = view.muteButtonP; ^ Tweak.x:30:27: error: property 'muteButtonP' not found on object of type 'MRUVolumeBackgroundView *' [view addSubview:view.muteButtonP]; ^ 2 errors generated. make[3]: *** [/home/test/theos/makefiles/instance/rules.mk:374: /home/test/bettervolume/.theos/obj/debug/arm64/Tweak.x.80bd0313.o] Error 1 rm /home/test/bettervolume/.theos/obj/debug/arm64e/Tweak.x.m rm /home/test/bettervolume/.theos/obj/debug/arm64/Tweak.x.m make[2]: *** [/home/test/theos/makefiles/instance/library.mk:52: /home/test/bettervolume/.theos/obj/debug/arm64e/Amethyst.dylib] Error 2 make[2]: *** Waiting for unfinished jobs.... make[2]: *** [/home/test/theos/makefiles/instance/library.mk:52: /home/test/bettervolume/.theos/obj/debug/arm64/Amethyst.dylib] Error 2 make[1]: *** [/home/test/theos/makefiles/instance/library.mk:37: internal-library-all_] Error 2 make: *** [/home/test/theos/makefiles/master/rules.mk:146: Amethyst.all.tweak.variables] Error 2

#

i forgor make before

lunar ginkgo
#

could i do muteButton = self.muteButtonP;

acoustic imp
#

yea

lunar ginkgo
#

wait

#

idk if its coding lang

#

but what buttonSate

#

is it sposed to be state?

#

wait i am wrong

#

WAIT

#

@acoustic imp i dont think u hooked

acoustic imp
#

ik

#

i said wait

lunar ginkgo
#

oh sorry

#

i didnt see

acoustic imp
#

all good

lunar ginkgo
acoustic imp
#

oh idk, i didnt do anything

#

did u try self indeat of view for that things ?

lunar ginkgo
acoustic imp
#

replace where it errored view with self

lunar ginkgo
#

Tweak.x:29:20: error: property 'muteButtonP' not found on object of type 'MRUVolumeBackgroundView *'
muteButton = view.muteButtonP;
^
Tweak.x:30:27: error: property 'muteButtonP' not found on object of type 'MRUVolumeBackgroundView *'
[view addSubview:view.muteButtonP];
^
Tweak.x:51:3: error: use of undeclared identifier 'muteButtonP'
muteButtonP.backgroundColor = [UIColor redColor];
^
Tweak.x:54:3: error: use of undeclared identifier 'muteButtonP'
muteButtonP.backgroundColor = [UIColor redColor];
^
4 errors generated.
make[3]: *** [/home/test/theos/makefiles/instance/rules.mk:374: /home

acoustic imp
#

nooo 🙈

#

chanegt the view.muteButtonPs to self.muteButtonP

lunar ginkgo
#

YOO

#

it made!

#

test tme

#

💗

acoustic imp
#

wha 😭

lunar ginkgo
#

idk

#

i was doing a nervous emoji

#

and i couldnt find it

#

so i did heartbeat

acoustic imp
#

oh i thought that was a regular heart

lunar ginkgo
#

uh oh!

acoustic imp
#

"😨 "

lunar ginkgo
#

when i opened it

#

open the volume thngy

#

it booted me into safemode

#

💀

#

oh crap!

radiant idol
#

Poor teslaman

lunar ginkgo
#

t

twilit jungle
acoustic imp
#

yea probly the property thing

#

k

lunar ginkgo
acoustic imp
#

well thats why i wanted u to hook the view instead

lunar ginkgo
#

explain in dumbass

radiant idol
#

I didn’t think I would ever feel bad for teslaman

acoustic imp
#

i dont think you would

#

welp gusse im re writting this tweak

lunar ginkgo
acoustic imp
#

ok my shit compiles gime a min and il do urs

#

send the curent code plz

#

and it doenst work.....

lunar ginkgo
#

ok

#

wait should i just upload folder to github?

hexed knot
#

@radiant idol whats worse you helping teslaman at first or teslaman helping seroina

acoustic imp
twilit jungle
#

you misspelled writing entire tweak

lunar ginkgo
#

tweak.x

acoustic imp
#

mhm

acoustic imp
lunar ginkgo
acoustic imp
#

object set class sucks

lunar ginkgo
tough shadow
#

How do I fix this

acoustic imp
#

makde sure u got sm that look like this ```TARGET := iphone:clang:15
.5:14.0

#

or 14.5:14.0

#

anythng really above 14.0 (like it says)

tough shadow
#

my make file is just this

acoustic imp
#

so add what i sent

indigo peak
#

Imma just let you guys figure this one out

acoustic imp
indigo peak
#

yes

acoustic imp
#

oh

indigo peak
#

Well not entirely

acoustic imp
#

oh

#

is it the sdk?

#

oh...

indigo peak
#

so like

acoustic imp
indigo peak
#

the iOS 14 thing was a warning…

acoustic imp
#

yea

indigo peak
acoustic imp
#

the thing below it is the issue

#

doesnt theos usally color 'ERRORS' ?

lunar ginkgo
#

Tesla did u find error?

acoustic imp
#

ok, im not crazy

acoustic imp
lunar ginkgo
acoustic imp
#

iv used up all my coding motivation for the day and i should studdy for my test tmro

#

and do my HW

tough shadow
#

still have the same error

acoustic imp
#

what is it

tough shadow
acoustic imp
#

ummm

#

not acording to theos

#

copy paste your ENTIRE make file

#

and send it

tough shadow
#

include $(THEOS)/makefiles/common.mk

include $(THEOS_MAKE_PATH)/null.mk

acoustic imp
#

so like ur missing most of the make file...

#

y'd u delete it ?

tough shadow
acoustic imp
#

no ? then whered it go lol

tough shadow
#

Idk

acoustic imp
#

so like theos just ate it ??

tough shadow
#

I have to start over again

acoustic imp
#

i mean u dont have to jus

#

copy the make file form a new tweak

#

and change the name to "shade" or what ever

tough shadow
acoustic imp
#

ik..

#

im saying u could do that to fix this

#

did it work?

tough shadow
#

No

#

the makefile is the same thing

tough shadow
acoustic imp
tough shadow
acoustic imp
#
INSTALL_TARGET_PROCESSES = SpringBoard


include $(THEOS)/makefiles/common.mk

TWEAK_NAME = shade

makefile_FILES = Tweak.x
makefile_CFLAGS = -fobjc-arc

include $(THEOS_MAKE_PATH)/tweak.mk

``` @tough shadow pleas copy paste the code above and make that your make file
twilit jungle
#

fr Not everything is a tweak

tough shadow
#

Am in a dead end

acoustic imp
acoustic imp
twilit jungle
#

Yeah he is making null

acoustic imp
#

fr

tough shadow
#

Am in a dead end

#

its over

radiant idol
#

Poor teslaman

tough shadow
#

I swear if I start again and its giving me errors am giving up

tough shadow
#

Oh it worked

#

I just had to remove large characters

tepid olive
#

by the wayyyyy you get that make warning by using xcodes make which is from 2006. you can install gmake with brew install gmake if u have homebrew installed. works the same just replace all instances of make with gmake

acoustic imp
tough shadow
faint stag
signal zealot
signal zealot
faint timber
#

reading helps

topaz yew
#

mfw no xrefs

faint stag
signal zealot
faint stag
#

those aren't patched

#

it just has private frameworks

signal zealot
faint stag
#

(yes, 17.x is not there but you can use the script)

signal zealot
signal zealot
faint stag
#

@signal zealot

signal zealot
hallow scarab
#

oops I sent the wrong code

primal perch
#

chariz

#

bottom text

hallow scarab
#

chariz

#

someone

#

anyone

placid kraken
#

why do i always get 403 forbidden for those links

slim bramble
placid kraken
#

oh i see

lyric heron
#

even when it's not claimed

torn cloud
lyric heron
#

no it was real

#

but the link never works

torn cloud
lyric heron
#

might be a skill issue on my end

sonic totem
#

I think they’re just getting claimed quickly

vivid dew
#

@limpid star happy birthday herrn lahr

limpid star
harsh junco
#

@limpid star happy unbirth

slim bramble
#

Happy birthday @limpid star

harsh junco
#

MIT has been a mistake

native dune
#

@limpid star happy birthday

frail cedar
#

@limpid star congratulation on becoming older

tawdry storm
#

birthday happy

torn cloud
#

haps @limpid star

gaunt helm
#

@limpid star happy womb eviction day

tender imp
#

BMS

hasty ruin
#

saurikware

native orbit
sonic totem
indigo peak
#

(is that cydia source)

hasty ruin
hasty ruin
torn cloud
slim bramble
hasty ruin
#

“could”

#

Yeah

#

I could

hollow scroll
limpid star
hollow scroll
#

@indigo peak @timid garden thanks, pm'ing you the details now 🙂

torn cloud
#

is dopamine's badRecovery a PAC bypass? since it seems to use kcall and it manipulates threads.

torn cloud
# sonic totem Yes

but i thought Operation Triangulation's PPLRW didn't need a pac bypass

sonic totem
#

It’s required on 15.0-15.1.1 and also can be useful for developers who want to kcall

torn cloud
#

yh

#

thanks

sonic totem
#

There might be ways around the 15.0-15.1.1 thing though I saw it somewhere

#

Also the Fugu15 PPL bypass required a PAC bypass

sonic totem
torn cloud
sonic totem
torn cloud
#

nice

gaunt helm
acoustic imp
lyric heron
#

would be it be possible to port flipswitch to rootless

acoustic imp
lyric heron
#

[[flipswitch]]

faint lionBOT
#
Flipswitch

Centralized toggle system for iOS

Author

rpetrich

Version

1.0.16~rc3

Price

Free

Bundle ID

com.a3tweaks.flipswitch

lyric heron
#

some sort of library

#

needed for like most tweaks

acoustic imp
#

Idk if its open source yea but if not then probably no

lyric heron
#

it is

acoustic imp
#

requires rocketBS which does not have official support for rootless

lyric heron
acoustic imp
#

"official"

lyric heron
#

well

#

doesn't matter if it's official or not no

#

as long as it's there

acoustic imp
#

ehhhh kinda doeas bc of where your getting it

lyric heron
#

i didn't get it from the naughty repo

acoustic imp
#

then whered u get it from?

lyric heron
#

nightwind patched the rootful version for me

acoustic imp
#

oh...

lyric heron
#

but flipswitch doesn't work with his patcher

acoustic imp
#

still not "official" - offical is kinda required to release sm

lyric heron
#

so i'd probably need an official rootless built

radiant idol
#

i never tested it

lyric heron
#

wtf didnt u say it works😭

acoustic imp
#

@radiant idol does ur patcher patch to /var/jb ? not sm symlink BS ?

lyric heron
radiant idol
#

here i'll patch it and if it works i will be impressed

acoustic imp
#

oh eta when ru gona releas it at sm point?

acoustic imp
radiant idol
acoustic imp
#

but im not fixing it is its broken

radiant idol
#

yes but i wanna make it gui

acoustic imp
#

🥲 k

#

@lyric heron

lyric heron
acoustic imp
#

im not spending more thatn 15 min on it

radiant idol
#

yeahhh thats not happening

lyric heron
#

let me see if

acoustic imp
#

if what...

lyric heron
#

wait

#

u gotta also do this one thentroll

#

it appears in settings at least

acoustic imp
#

the make file it so long for a discord mesage uhhuhh

lyric heron
#

so close… and yet so far

acoustic imp
#

honestly im skiding this tweaks stuff

#

gold mine fr

acoustic imp
lyric heron
#

It safemodes me

#

😔

acoustic imp
#

whats the crash log

#

@radiant idol these paths dont need to be /var/jb right ?

radiant idol
#

no

acoustic imp
#

k jus making sure

lyric heron
acoustic imp
lyric heron
#

does this also work

acoustic imp
radiant idol
#

SBSettings???

acoustic imp
radiant idol
#

thats from like

#

iOS 6

acoustic imp
lyric heron
#

wait so what crashlog did you need

#

im confused

acoustic imp
lyric heron
#

one sec

acoustic imp
#

ummm, this needs to be updated for IP12 + lol

lyric heron
#

ill get u a tweak of your choice if we get this to worktroll

acoustic imp
#

its appaze

lyric heron
#

wait so its not

#

flipswitch?

acoustic imp
#

no

lyric heron
#

surely if I ask for the source code of appaze2

#

i'll get it right

acoustic imp
#

just disable it for now

#

no

lyric heron
#

yeah but the whole point of flipswitch was to get appaze2

acoustic imp
acoustic imp
lyric heron
acoustic imp
#

wait so huh? flipswitch isnt the circle?

lyric heron
#

[[appaze2]]

faint lionBOT
#
Appaze

Set custom volume/brightness/toggles per app, directly from 3D Touch menu

Author

AnthoPak

Version

2.1.2

Price

$1.49

Repo
Bundle ID

com.anthopak.appaze

lyric heron
#

wrong one

acoustic imp
#

omg i need this

lyric heron
#

[[appaze2]]

faint lionBOT
#
Appaze

Set custom volume/brightness/toggles per app, directly from 3D Touch menu

Author

AnthoPak

Version

2.1.2

Price

$1.49

Repo
Bundle ID

com.anthopak.appaze

lyric heron
#

uh wait

#

is anthopak in this server

#

oh they are

#

will they get upset if I ping them

acoustic imp
#

probly

#

wait so what does flip swich do ?

lyric heron
#

its the library

#

for the tweak i guess

#

[[flipswitch]]

faint lionBOT
#
Flipswitch

Centralized toggle system for iOS

Author

rpetrich

Version

1.0.16~rc3

Price

Free

Bundle ID

com.a3tweaks.flipswitch

acoustic imp
#

oh trol

lyric heron
#

Asking anthopak shouldn't hurt though... right

acoustic imp
#

well ur crashlog doesnt rly say what the issue is

lyric heron
acoustic imp
lyric heron
#

maybe i shall dm

#

instead of pingpong

acoustic imp
#

flip swich doesnt work

#

its not gona

lyric heron
#

but how do you know

#

its flipswitch that fails

acoustic imp
lyric heron
#

yeah but didn't nightwinds patcher make it

#

so its in /var/jb

acoustic imp
#

can u search ur FS for libMobileGestalt

lyric heron
#

therr are 2 files

#

nvm

#

more

#

its loading slowly

acoustic imp
#

where are the to ones located ?

#

oh there tbd not dylid

lyric heron
#

in usr/lib

#

in some random SDK folder

#

/private/preboot/B5A9353985FF8B9E5E8440FFCEB59E4AA35650260269BD46084FEECC5EA10BF419F9068EBDC72CC4D2AE74E91720FA5B/dopamine-AEcH2n/procursus/usr/share/SDKs/iPhoneOS.sdk/usr/lib

acoustic imp
#

yea so its not gona work

lyric heron
#

ok so its flipswitch's fault

acoustic imp
#

bc idk if flip swich puts it there but i dont think it does

lyric heron
#

and coding that into the source code is probably gonna demand to like

#

way more time than its worth?

acoustic imp
#

it might be the mac of part of this idk

slim bramble
lyric heron
#

yes

#

well

slim bramble
lyric heron
#

if you get flipswitch

slim bramble
#

it never worked for me

lyric heron
#

to work

slim bramble
lyric heron
#

Go ahead

slim bramble
acoustic imp
lyric heron
#

im not code savvy

#

so one gotta translate

slim bramble
#

It's braindamage

#

@radiant idol

#

perhaps you know

#

🙏

acoustic imp
#

could be the exclamation mark idk

slim bramble
#

:smh:

radiant idol
#

NSLog(@"%@", @"your thing");

slim bramble
#

oh god

#

tf is that fix

acoustic imp
slim bramble
#

MORE ERRORS SMHG

acoustic imp
#

whad u expect

slim bramble
#

@lyric heron

#

do you need it's entirety

#

cuz like fuck off

#

if you only need one shit

lyric heron
#

i think [[boxy 4]] also needs itk3llyWelp

faint lionBOT
#
Boxy 4 (iOS 13 - 14)

Fully customize your icon layout! Have you ever run into an issue with space in your SpringBoard or are you just bored with the default layout of icons? Well, Boxy can fix both of those issues. Your i...

Author

wvabrinskas

Version

4.4.2

Price

$2.99

Repo
Bundle ID

com.irepo.boxy4

lyric heron
#

lmao

slim bramble
#

ok that's cool

#

but what exactly do you need

acoustic imp
#

all of it

slim bramble
acoustic imp
slim bramble
#

it's old garbadge

#

what do you expect

lyric heron
#

imagine how revolutionary it would be if you manage to convert the biggest rootful librariesfrnerd

lyric heron
#

there's also

#

uh

slim bramble
#

Wait lemme downgrade toolchain

lyric heron
#

theres also this

#

that ive been looking into

#

would be cool to exist

slim bramble
#

Yeah but it's old garbadge

lyric heron
#

why is the old garbage

#

always the best tweaks

acoustic imp
#

its swift uhh

hexed knot
#

Cuz ppl dont make shit anymore

lyric heron
#

Because jb is dead

#

yes

#

so thats why we gotta work with the old garbage

slim bramble
lyric heron
#

or we talking about flip one

acoustic imp
lyric heron
#

exactly

#

its been updated when iso 15 existed

slim bramble
lyric heron
#

oh

acoustic imp
lyric heron
#

@tepid olive said something about that as well

slim bramble
#

POV : swift

acoustic imp
#

my eyes🙈

tepid olive
#

you need to recreate the makefile, control, along with determining all the dependencies and building them for rootless. which you cant do

lyric heron
#

I have the dependencies

lyric heron
tepid olive
hexed knot
acoustic imp
tepid olive
#

bro making me compile a paid tweak

acoustic imp
#

thats honeslty kinda smart

tepid olive
#

this aint no dleovl/cardculator getcho ass outta here 🗣️

#

ok well i cant build the dependencies so

lyric heron
#

no ols

#

pls

#

🙏

#

ok but flipswitch

tepid olive
#

someone else is working on flipswitch

acoustic imp
lyric heron
#

Think about it

tepid olive
#

forgot how annoying spotify ads are

lyric heron
#

you'd make so many people happy (me)

tepid olive
#

first of all ur on ios 16

acoustic imp
lyric heron
tepid olive
#

how can you guarantee an ios 14 tweak will work

acoustic imp
tepid olive
#

especially one that seems to do a lot of stuff that has changed since

#

in ios

acoustic imp
#

it might work on ios15 might

lyric heron
#

ok but

#

appaze should work

#

if i can get the menu to open

acoustic imp
#

it uses flipswitch dummy

lyric heron
#

yes but

#

if one would fix that

tepid olive
acoustic imp
tepid olive
#

yeah no

lyric heron
#

trust me

#

it's worth it

#

ill oil up

acoustic imp
#

trust me, do it ur self

lyric heron
#

i'm dumb

#

i can only do math

acoustic imp
lyric heron
#

i can do metrics

#

and banach rooms

tepid olive
#

mfw compiling tweaks is kinda just math in disguise

lyric heron
#

and bolzano-weierstraß

#

and anything you heart desires

acoustic imp
lyric heron
#

all in exchange for working on flipswitch k3llySad

acoustic imp
tepid olive
#

it's just math

#

dingy if u cant do it i think u aren't good at math.... what ARE u good at then..

lyric heron
#

i'm good at math math

#

not IT math

acoustic imp
#

2+2=?

lyric heron
#

22

#

i know that "2"+"2" = "22" 😦

#

or maybe it was without the ""

#

ok but long story short

#

there ain't no way this is gonna work?

acoustic imp
#

PeepoCiggy corect

#

well

#

no ones gona do it

lyric heron
#

not even for

#

a tweak? 👉👈

acoustic imp
#

no

lyric heron
#

how about

#

a nitro

vivid dew
#

buy me nitro

acoustic imp
#

i dont want your money

#

although

#

if i send u a possible flip switch deb will i get onesettings?

vivid dew
#

buy me a 300 turkish lira itunes card

#

who

lyric heron
lyric heron
acoustic imp
lyric heron
#

the nitro method

acoustic imp
#

lol

lyric heron
vivid dew
#

what does that say

lyric heron
#

to 1049

#

real L

vivid dew
#

they got warzone mobile though

lyric heron
vivid dew
#

my apple sub still says 269 lira

#

hopefully it stays like that as long as i never cancel it

lyric heron
#

did you not get an email?

vivid dew
#

no

lyric heron
#

wtf

#

wow

#

but i would deeply appreciate

#

if u trytroll

vivid dew
#

we do a sufficient amount of trolling

timid furnace
#

how cheap nitro

lyric heron
#

ur so mean

#

😔

lyric heron
#

they ruined the fun

timid furnace
#

oh well

#

my play balance continues to fund nitro basic

#

i like how its been months and im still at ~$20

lyric heron
#

i bought myself a year for 15 bucks

#

of the good nitro

#

dhinak surely u wanna try my funny little project right

timid furnace
#

what funny project

lyric heron
#

on iso 16

#

(pls)

timid furnace
#

i forgot what this tweak was

#

[[flipswitch]]

faint lionBOT
#
Flipswitch

Centralized toggle system for iOS

Author

rpetrich

Version

1.0.16~rc3

Price

Free

Bundle ID

com.a3tweaks.flipswitch

vivid dew
#

a3tweaks

primal perch
#

:ghostsalute:

lyric heron
#

(pls im begging)

slim bramble
lyric heron
#

dhinak is smart

#

i know they can do it

#

ill sponsor one month of ur nitro

hexed knot
#

Throwback

hexed knot
primal perch
#

===== RAGE OVER =====

hexed knot
#

====== RAGE OVER =====

drifting heron
#

===== RAGE OVER =====

turbid fjord
acoustic imp
craggy loom
#

hello, any why I get "code signature invalid, errno=1" when I try to dlopen a dylib into a process?

#

maybe there's an extra step with Dopamine 2 before I can inject a library...

grim sparrow
#

!!

primal perch
#

hell yeah

#

idk what complaints you have with the UI

#

other than 'its not cocoa'

#

it blows ghidra out of the water

hasty ruin
lean ermine
#

both of those are also true about minecraft interestingly enough

primal perch
#

real shit tho ida 8.4

#

zoom in without looking like dick

native orbit
#

me with ida 7.7 using wine on mac:

topaz yew
topaz yew
#

thats so real

primal perch
#

yea

placid kraken
#

@hasty ruin this you?

hasty ruin
#

yes

primal perch
#

lmfao

slim bramble
hasty ruin
#

no more needs to be said

slim bramble
#

At least I’m proud of where I’m from

#

Smh

hasty ruin
#

skull

placid kraken
#

ICRAZE IS BRITISH????

slim bramble
placid kraken
#

HOW MANY ARE THERE

slim bramble
#

We need more diversity

hasty ruin
# placid kraken ICRAZE IS BRITISH????

yes 💪 💪 🏴󠁧󠁢󠁥󠁮󠁧󠁿 🙏 🤝 👩 🤛 🍺 🍻 🙏 🤝 💪 🏴󠁧󠁢󠁥󠁮󠁧󠁿 🏴󠁧󠁢󠁥󠁮󠁧󠁿 🏴󠁧󠁢󠁥󠁮󠁧󠁿

slim bramble
#

Only thing icraze knows

#

Oh actually has he ever touched grass ? 🤔

hasty ruin
#

making it automatically unfunny

slim bramble
#

You keep yapping about baguette smh

placid kraken
#

thats the only 2 options in this country

#

no snow

#

no "ehh" weather

#

its always too hot or raining

slim bramble
placid kraken
hasty ruin
#

modded client

placid kraken
#

only for the experiments tab and themes !!

tawdry trench
#

briish

hasty ruin
#

embed fail

slim bramble
#

1984 of Kirbistan

placid kraken
#

(i dont have the nexus gifs)

slim bramble
hasty ruin
placid kraken
#

oh wait

#

i do

hasty ruin
#

else flora gets it

native orbit
placid kraken
slim bramble
#

I should make a bootloop rune

placid kraken
#

THERES NO WAY

#

IT ACTUALLY DOES

slim bramble
#

POV : zefram

tawdry trench
#

pangu7 in a dark room challenge

slim bramble
#

Lol

placid kraken
#

1984

slim bramble
placid kraken
#

icraze is definitely one of the people of 2024

slim bramble
#

With icraze, there is no freedom of speech

placid kraken
#

oh he left for a second

#

he hasnt deleted the nexus gifs yet

slim bramble
#

We need rune bootloop

placid kraken
#

quick flood the chat so he misses them

slim bramble
placid kraken
#

NOOOO

hasty ruin
placid kraken
#

nothing people were posting gifs of flowers

slim bramble
placid kraken
cloud yacht
#

I got gir'ed

slim bramble
#

L

acoustic imp
#

@slim bramble when eta 16Player

#

im tired of being broke

slim bramble