initial push

This commit is contained in:
2024-09-04 00:59:52 -05:00
parent fda3040fc2
commit 033cf5b27d
1764 changed files with 2185 additions and 313 deletions

View File

@@ -1,23 +1,11 @@
# Python-With-Gtk-Template
A template project for Python with Gtk applications.
# LSP Manager
A helpful tool to handle LSPs (Language Server Protocols) by creating the LSP process, sending client initialize and initialized messages, and allowing crafting of messages.
### Requirements
* PyGObject (Gtk introspection library)
* pyxdg (Desktop ".desktop" file parser)
* setproctitle (Define process title to search and kill more easily)
* sqlmodel (SQL databases and is powered by Pydantic and SQLAlchemy)
### Note
* Move respetive sub folder content under user_config to the same places in Linux. Though, user/share/<app name> can go to ~/.config folder if prefered.
* In additiion, place the plugins folder in the same app folder you moved to /usr/share/<app name> or ~/.config/<app name> .
There are a "\<change_me\>" strings and files that need to be set according to your app's name located at:
* \_\_builtins\_\_.py
* user_config/bin/app_name
* user_config/usr/share/app_name
* user_config/usr/share/app_name/icons/app_name.png
* user_config/usr/share/app_name/icons/app_name-64x64.png
* user_config/usr/share/applications/app_name.desktop
For the user_config, after changing names and files, copy all content to their respective destinations.
The logic follows Debian Dpkg packaging and its placement logic.
WIP