代码片段管理工具:rofi前端+Java守护进程

This commit is contained in:
2025-10-05 00:30:37 +08:00
commit a6b2905ad2
49 changed files with 3058 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
import rofi
from helper.file_helper import add
class AddMenu:
def __init__(self,r:rofi.Rofi):
self._r = r
def run(self):
result = add()
if not result.ok:
self._r.error(result.message)