trufae / Therm

An iTerm2 fork with focus on minimalism and better defaults
GNU General Public License v2.0
299 stars 9 forks source link

Implement Window -> always on top #24

Closed trufae closed 6 years ago

trufae commented 6 years ago

Using Frida to enable:

ObjC.schedule(ObjC.mainQueue, ()=> {ObjC.classes.NSApplication.sharedApplication().windows().objectAtIndex(0).setLevel(1000);})

disable:

ObjC.schedule(ObjC.mainQueue, ()=> {ObjC.classes.NSApplication.sharedApplication().windows().objectAtIndex(0).setLevel(0);})

trufae commented 6 years ago

Dupe of #12