trufae / Therm

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

Add 'always-on-top' option for non-maximized terminals #12

Closed trufae closed 6 years ago

trufae commented 6 years ago

https://github.com/radare/toys/tree/master/alwaysOnTop

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);})