diff options
| author | David Vazgenovich Shakaryan <dvshakaryan@gmail.com> | 2026-01-29 21:48:19 -0800 |
|---|---|---|
| committer | David Vazgenovich Shakaryan <dvshakaryan@gmail.com> | 2026-01-29 21:48:19 -0800 |
| commit | 28068fb57dc1e0aff22f6de3c79ee3f9d8ffa65d (patch) | |
| tree | 16d25a670867ba56a53ea07afacd780b07275d8c /main.lua | |
| parent | d59d49480e2981345fe173f741d6b0ad4a2d2320 (diff) | |
| download | mpv-iptv-menu-28068fb57dc1e0aff22f6de3c79ee3f9d8ffa65d.tar.gz mpv-iptv-menu-28068fb57dc1e0aff22f6de3c79ee3f9d8ffa65d.tar.xz | |
move application-aware utility functions to separate module
Diffstat (limited to 'main.lua')
| -rw-r--r-- | main.lua | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -4,6 +4,7 @@ local cacher = require('cacher') local config = require('config') local input = require('input') local rt = require('rt') +local rx = require('rx') local util = require('util') local _catalogue = require('catalogue') local _downloader = require('downloader') @@ -75,6 +76,7 @@ local ctx = { xc = xc, } rt.init(state, osd, ctx) +rx.init(state, osd, ctx) mp.observe_property('mouse-pos', 'native', function(_, mpos) input.update_mpos(mpos) |
