tym icon indicating copy to clipboard operation
tym copied to clipboard

Lua-configurable terminal emulator

Results 18 tym issues
Sort by recently updated
recently updated
newest added

TODO: turn this into a build flag.

Rewrap the content when terminal size changed, this fix a lot of issues with resizes

And make it accesible by Lua using GObject-introspection

refactor

Certain terminal emulators have the ability to show ligatures in supported fonts. ##### Screenshot ![image](https://user-images.githubusercontent.com/58742515/166128886-3c842dd8-4127-4c06-b01d-3444e66b2f1b.png)

enhancement
help wanted

Hi, I noticed, that tym startups are slow (and maybe getting gradually slower?) Here is comparison with urxvt: ``` # time urxvt -e "bash -c exit" 2019-08-18T11:20:42 CEST 0.03user 0.01system...

enhancement
help wanted

API to check if the mouse button is down/up.

Lua API

Is there a way to read the terminal output in a Lua event hook? I'd like to pass some send_key based on output shown in the terminal. Is that possible?

enhancement

if i try and set the colors via `tym.set` it doesn't work, more specifically color 0 overrides the bg and color 7 overrides the fg

![image](https://github.com/endaaman/tym/assets/49140/65fcecd2-7852-41ae-b372-60b3028907d2) I can see a thick background (tends to become thinner as window size increases) around the tym window. I am on Ubuntu 22.04 and manually built the software based...

It should be reproducible like this: ``` $ cat $XDG_CONFIG_HOME/tym/config.lua local tym = require('tym') function profile_path() local path = tym.get_config_path() return path:gsub("(.+)/[^/]+$", "%1") end tym.set_hook('clicked', function(btn) if btn == 3...