From 0f1b0a9b94f3cd198b3f90363bc088bf9df0ca56 Mon Sep 17 00:00:00 2001 From: itdominator Date: Thu, 23 Mar 2023 02:38:04 +0000 Subject: [PATCH] Initial commit --- .gitignore | 129 +++++++ LICENSE | 339 ++++++++++++++++++ README.md | 20 ++ plugins/README.txt | 2 + plugins/template/__init__.py | 3 + plugins/template/__main__.py | 3 + plugins/template/manifest.json | 13 + plugins/template/plugin.py | 51 +++ src/__builtins__.py | 43 +++ src/__init__.py | 3 + src/__main__.py | 52 +++ src/app.py | 35 ++ src/core/__init__.py | 3 + src/core/controller.py | 59 +++ src/core/controller_data.py | 69 ++++ src/core/core_widget.py | 44 +++ src/core/mixins/__init__.py | 3 + src/core/mixins/dummy_mixin.py | 14 + src/core/mixins/signals/__init__.py | 3 + src/core/mixins/signals/ipc_signals_mixin.py | 17 + .../mixins/signals/keyboard_signals_mixin.py | 94 +++++ src/core/mixins/signals_mixins.py | 13 + src/core/window.py | 95 +++++ src/plugins/__init__.py | 3 + src/plugins/manifest.py | 64 ++++ src/plugins/plugin_base.py | 61 ++++ src/plugins/plugins_controller.py | 119 ++++++ src/utils/__init__.py | 3 + src/utils/endpoint_registry.py | 22 ++ src/utils/event_system.py | 54 +++ src/utils/ipc_server.py | 105 ++++++ src/utils/keybindings.py | 127 +++++++ src/utils/logger.py | 61 ++++ src/utils/settings/__init__.py | 4 + src/utils/settings/settings.py | 158 ++++++++ src/utils/settings/start_check_mixin.py | 50 +++ user_config/bin/ | 29 ++ .../usr/applications/.desktop | 11 + .../usr/share/app_name/Main_Window.glade | 28 ++ .../share/app_name/icons/app_name-64x64.png | Bin 0 -> 11833 bytes .../usr/share/app_name/icons/app_name.png | Bin 0 -> 21361 bytes .../usr/share/app_name/icons/archive.png | Bin 0 -> 1670 bytes .../usr/share/app_name/icons/audio.png | Bin 0 -> 1544 bytes user_config/usr/share/app_name/icons/bin.png | Bin 0 -> 858 bytes user_config/usr/share/app_name/icons/dir.png | Bin 0 -> 850 bytes user_config/usr/share/app_name/icons/doc.png | Bin 0 -> 702 bytes .../usr/share/app_name/icons/image.png | Bin 0 -> 6591 bytes user_config/usr/share/app_name/icons/pdf.png | Bin 0 -> 925 bytes .../usr/share/app_name/icons/presentation.png | Bin 0 -> 882 bytes .../usr/share/app_name/icons/spreadsheet.png | Bin 0 -> 707 bytes user_config/usr/share/app_name/icons/text.png | Bin 0 -> 798 bytes .../usr/share/app_name/icons/trash.png | Bin 0 -> 989 bytes .../usr/share/app_name/icons/video.png | Bin 0 -> 1313 bytes user_config/usr/share/app_name/icons/web.png | Bin 0 -> 1845 bytes .../usr/share/app_name/key-bindings.json | 23 ++ user_config/usr/share/app_name/settings.json | 40 +++ user_config/usr/share/app_name/stylesheet.css | 86 +++++ 57 files changed, 2155 insertions(+) create mode 100644 .gitignore create mode 100644 LICENSE create mode 100644 README.md create mode 100644 plugins/README.txt create mode 100644 plugins/template/__init__.py create mode 100644 plugins/template/__main__.py create mode 100644 plugins/template/manifest.json create mode 100644 plugins/template/plugin.py create mode 100644 src/__builtins__.py create mode 100644 src/__init__.py create mode 100644 src/__main__.py create mode 100644 src/app.py create mode 100644 src/core/__init__.py create mode 100644 src/core/controller.py create mode 100644 src/core/controller_data.py create mode 100644 src/core/core_widget.py create mode 100644 src/core/mixins/__init__.py create mode 100644 src/core/mixins/dummy_mixin.py create mode 100644 src/core/mixins/signals/__init__.py create mode 100644 src/core/mixins/signals/ipc_signals_mixin.py create mode 100644 src/core/mixins/signals/keyboard_signals_mixin.py create mode 100644 src/core/mixins/signals_mixins.py create mode 100644 src/core/window.py create mode 100644 src/plugins/__init__.py create mode 100644 src/plugins/manifest.py create mode 100644 src/plugins/plugin_base.py create mode 100644 src/plugins/plugins_controller.py create mode 100644 src/utils/__init__.py create mode 100644 src/utils/endpoint_registry.py create mode 100644 src/utils/event_system.py create mode 100644 src/utils/ipc_server.py create mode 100644 src/utils/keybindings.py create mode 100644 src/utils/logger.py create mode 100644 src/utils/settings/__init__.py create mode 100644 src/utils/settings/settings.py create mode 100644 src/utils/settings/start_check_mixin.py create mode 100755 user_config/bin/ create mode 100755 user_config/usr/applications/.desktop create mode 100644 user_config/usr/share/app_name/Main_Window.glade create mode 100644 user_config/usr/share/app_name/icons/app_name-64x64.png create mode 100644 user_config/usr/share/app_name/icons/app_name.png create mode 100644 user_config/usr/share/app_name/icons/archive.png create mode 100644 user_config/usr/share/app_name/icons/audio.png create mode 100644 user_config/usr/share/app_name/icons/bin.png create mode 100644 user_config/usr/share/app_name/icons/dir.png create mode 100644 user_config/usr/share/app_name/icons/doc.png create mode 100644 user_config/usr/share/app_name/icons/image.png create mode 100644 user_config/usr/share/app_name/icons/pdf.png create mode 100644 user_config/usr/share/app_name/icons/presentation.png create mode 100644 user_config/usr/share/app_name/icons/spreadsheet.png create mode 100644 user_config/usr/share/app_name/icons/text.png create mode 100644 user_config/usr/share/app_name/icons/trash.png create mode 100644 user_config/usr/share/app_name/icons/video.png create mode 100644 user_config/usr/share/app_name/icons/web.png create mode 100644 user_config/usr/share/app_name/key-bindings.json create mode 100644 user_config/usr/share/app_name/settings.json create mode 100644 user_config/usr/share/app_name/stylesheet.css diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..b6e4761 --- /dev/null +++ b/.gitignore @@ -0,0 +1,129 @@ +# Byte-compiled / optimized / DLL files +__pycache__/ +*.py[cod] +*$py.class + +# C extensions +*.so + +# Distribution / packaging +.Python +build/ +develop-eggs/ +dist/ +downloads/ +eggs/ +.eggs/ +lib/ +lib64/ +parts/ +sdist/ +var/ +wheels/ +pip-wheel-metadata/ +share/python-wheels/ +*.egg-info/ +.installed.cfg +*.egg +MANIFEST + +# PyInstaller +# Usually these files are written by a python script from a template +# before PyInstaller builds the exe, so as to inject date/other infos into it. +*.manifest +*.spec + +# Installer logs +pip-log.txt +pip-delete-this-directory.txt + +# Unit test / coverage reports +htmlcov/ +.tox/ +.nox/ +.coverage +.coverage.* +.cache +nosetests.xml +coverage.xml +*.cover +*.py,cover +.hypothesis/ +.pytest_cache/ + +# Translations +*.mo +*.pot + +# Django stuff: +*.log +local_settings.py +db.sqlite3 +db.sqlite3-journal + +# Flask stuff: +instance/ +.webassets-cache + +# Scrapy stuff: +.scrapy + +# Sphinx documentation +docs/_build/ + +# PyBuilder +target/ + +# Jupyter Notebook +.ipynb_checkpoints + +# IPython +profile_default/ +ipython_config.py + +# pyenv +.python-version + +# pipenv +# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control. +# However, in case of collaboration, if having platform-specific dependencies or dependencies +# having no cross-platform support, pipenv may install dependencies that don't work, or not +# install all needed dependencies. +#Pipfile.lock + +# PEP 582; used by e.g. github.com/David-OConnor/pyflow +__pypackages__/ + +# Celery stuff +celerybeat-schedule +celerybeat.pid + +# SageMath parsed files +*.sage.py + +# Environments +.env +.venv +env/ +venv/ +ENV/ +env.bak/ +venv.bak/ + +# Spyder project settings +.spyderproject +.spyproject + +# Rope project settings +.ropeproject + +# mkdocs documentation +/site + +# mypy +.mypy_cache/ +.dmypy.json +dmypy.json + +# Pyre type checker +.pyre/ diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..d159169 --- /dev/null +++ b/LICENSE @@ -0,0 +1,339 @@ + GNU GENERAL PUBLIC LICENSE + Version 2, June 1991 + + Copyright (C) 1989, 1991 Free Software Foundation, Inc., + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The licenses for most software are designed to take away your +freedom to share and change it. By contrast, the GNU General Public +License is intended to guarantee your freedom to share and change free +software--to make sure the software is free for all its users. This +General Public License applies to most of the Free Software +Foundation's software and to any other program whose authors commit to +using it. (Some other Free Software Foundation software is covered by +the GNU Lesser General Public License instead.) You can apply it to +your programs, too. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +this service if you wish), that you receive source code or can get it +if you want it, that you can change the software or use pieces of it +in new free programs; and that you know you can do these things. + + To protect your rights, we need to make restrictions that forbid +anyone to deny you these rights or to ask you to surrender the rights. +These restrictions translate to certain responsibilities for you if you +distribute copies of the software, or if you modify it. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must give the recipients all the rights that +you have. You must make sure that they, too, receive or can get the +source code. And you must show them these terms so they know their +rights. + + We protect your rights with two steps: (1) copyright the software, and +(2) offer you this license which gives you legal permission to copy, +distribute and/or modify the software. + + Also, for each author's protection and ours, we want to make certain +that everyone understands that there is no warranty for this free +software. If the software is modified by someone else and passed on, we +want its recipients to know that what they have is not the original, so +that any problems introduced by others will not reflect on the original +authors' reputations. + + Finally, any free program is threatened constantly by software +patents. We wish to avoid the danger that redistributors of a free +program will individually obtain patent licenses, in effect making the +program proprietary. To prevent this, we have made it clear that any +patent must be licensed for everyone's free use or not licensed at all. + + The precise terms and conditions for copying, distribution and +modification follow. + + GNU GENERAL PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. This License applies to any program or other work which contains +a notice placed by the copyright holder saying it may be distributed +under the terms of this General Public License. The "Program", below, +refers to any such program or work, and a "work based on the Program" +means either the Program or any derivative work under copyright law: +that is to say, a work containing the Program or a portion of it, +either verbatim or with modifications and/or translated into another +language. (Hereinafter, translation is included without limitation in +the term "modification".) Each licensee is addressed as "you". + +Activities other than copying, distribution and modification are not +covered by this License; they are outside its scope. The act of +running the Program is not restricted, and the output from the Program +is covered only if its contents constitute a work based on the +Program (independent of having been made by running the Program). +Whether that is true depends on what the Program does. + + 1. You may copy and distribute verbatim copies of the Program's +source code as you receive it, in any medium, provided that you +conspicuously and appropriately publish on each copy an appropriate +copyright notice and disclaimer of warranty; keep intact all the +notices that refer to this License and to the absence of any warranty; +and give any other recipients of the Program a copy of this License +along with the Program. + +You may charge a fee for the physical act of transferring a copy, and +you may at your option offer warranty protection in exchange for a fee. + + 2. You may modify your copy or copies of the Program or any portion +of it, thus forming a work based on the Program, and copy and +distribute such modifications or work under the terms of Section 1 +above, provided that you also meet all of these conditions: + + a) You must cause the modified files to carry prominent notices + stating that you changed the files and the date of any change. + + b) You must cause any work that you distribute or publish, that in + whole or in part contains or is derived from the Program or any + part thereof, to be licensed as a whole at no charge to all third + parties under the terms of this License. + + c) If the modified program normally reads commands interactively + when run, you must cause it, when started running for such + interactive use in the most ordinary way, to print or display an + announcement including an appropriate copyright notice and a + notice that there is no warranty (or else, saying that you provide + a warranty) and that users may redistribute the program under + these conditions, and telling the user how to view a copy of this + License. (Exception: if the Program itself is interactive but + does not normally print such an announcement, your work based on + the Program is not required to print an announcement.) + +These requirements apply to the modified work as a whole. If +identifiable sections of that work are not derived from the Program, +and can be reasonably considered independent and separate works in +themselves, then this License, and its terms, do not apply to those +sections when you distribute them as separate works. But when you +distribute the same sections as part of a whole which is a work based +on the Program, the distribution of the whole must be on the terms of +this License, whose permissions for other licensees extend to the +entire whole, and thus to each and every part regardless of who wrote it. + +Thus, it is not the intent of this section to claim rights or contest +your rights to work written entirely by you; rather, the intent is to +exercise the right to control the distribution of derivative or +collective works based on the Program. + +In addition, mere aggregation of another work not based on the Program +with the Program (or with a work based on the Program) on a volume of +a storage or distribution medium does not bring the other work under +the scope of this License. + + 3. You may copy and distribute the Program (or a work based on it, +under Section 2) in object code or executable form under the terms of +Sections 1 and 2 above provided that you also do one of the following: + + a) Accompany it with the complete corresponding machine-readable + source code, which must be distributed under the terms of Sections + 1 and 2 above on a medium customarily used for software interchange; or, + + b) Accompany it with a written offer, valid for at least three + years, to give any third party, for a charge no more than your + cost of physically performing source distribution, a complete + machine-readable copy of the corresponding source code, to be + distributed under the terms of Sections 1 and 2 above on a medium + customarily used for software interchange; or, + + c) Accompany it with the information you received as to the offer + to distribute corresponding source code. (This alternative is + allowed only for noncommercial distribution and only if you + received the program in object code or executable form with such + an offer, in accord with Subsection b above.) + +The source code for a work means the preferred form of the work for +making modifications to it. For an executable work, complete source +code means all the source code for all modules it contains, plus any +associated interface definition files, plus the scripts used to +control compilation and installation of the executable. However, as a +special exception, the source code distributed need not include +anything that is normally distributed (in either source or binary +form) with the major components (compiler, kernel, and so on) of the +operating system on which the executable runs, unless that component +itself accompanies the executable. + +If distribution of executable or object code is made by offering +access to copy from a designated place, then offering equivalent +access to copy the source code from the same place counts as +distribution of the source code, even though third parties are not +compelled to copy the source along with the object code. + + 4. You may not copy, modify, sublicense, or distribute the Program +except as expressly provided under this License. Any attempt +otherwise to copy, modify, sublicense or distribute the Program is +void, and will automatically terminate your rights under this License. +However, parties who have received copies, or rights, from you under +this License will not have their licenses terminated so long as such +parties remain in full compliance. + + 5. You are not required to accept this License, since you have not +signed it. However, nothing else grants you permission to modify or +distribute the Program or its derivative works. These actions are +prohibited by law if you do not accept this License. Therefore, by +modifying or distributing the Program (or any work based on the +Program), you indicate your acceptance of this License to do so, and +all its terms and conditions for copying, distributing or modifying +the Program or works based on it. + + 6. Each time you redistribute the Program (or any work based on the +Program), the recipient automatically receives a license from the +original licensor to copy, distribute or modify the Program subject to +these terms and conditions. You may not impose any further +restrictions on the recipients' exercise of the rights granted herein. +You are not responsible for enforcing compliance by third parties to +this License. + + 7. If, as a consequence of a court judgment or allegation of patent +infringement or for any other reason (not limited to patent issues), +conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot +distribute so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you +may not distribute the Program at all. For example, if a patent +license would not permit royalty-free redistribution of the Program by +all those who receive copies directly or indirectly through you, then +the only way you could satisfy both it and this License would be to +refrain entirely from distribution of the Program. + +If any portion of this section is held invalid or unenforceable under +any particular circumstance, the balance of the section is intended to +apply and the section as a whole is intended to apply in other +circumstances. + +It is not the purpose of this section to induce you to infringe any +patents or other property right claims or to contest validity of any +such claims; this section has the sole purpose of protecting the +integrity of the free software distribution system, which is +implemented by public license practices. Many people have made +generous contributions to the wide range of software distributed +through that system in reliance on consistent application of that +system; it is up to the author/donor to decide if he or she is willing +to distribute software through any other system and a licensee cannot +impose that choice. + +This section is intended to make thoroughly clear what is believed to +be a consequence of the rest of this License. + + 8. If the distribution and/or use of the Program is restricted in +certain countries either by patents or by copyrighted interfaces, the +original copyright holder who places the Program under this License +may add an explicit geographical distribution limitation excluding +those countries, so that distribution is permitted only in or among +countries not thus excluded. In such case, this License incorporates +the limitation as if written in the body of this License. + + 9. The Free Software Foundation may publish revised and/or new versions +of the General Public License from time to time. Such new versions will +be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + +Each version is given a distinguishing version number. If the Program +specifies a version number of this License which applies to it and "any +later version", you have the option of following the terms and conditions +either of that version or of any later version published by the Free +Software Foundation. If the Program does not specify a version number of +this License, you may choose any version ever published by the Free Software +Foundation. + + 10. If you wish to incorporate parts of the Program into other free +programs whose distribution conditions are different, write to the author +to ask for permission. For software which is copyrighted by the Free +Software Foundation, write to the Free Software Foundation; we sometimes +make exceptions for this. Our decision will be guided by the two goals +of preserving the free status of all derivatives of our free software and +of promoting the sharing and reuse of software generally. + + NO WARRANTY + + 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY +FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN +OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES +PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED +OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS +TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE +PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, +REPAIR OR CORRECTION. + + 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR +REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, +INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING +OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED +TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY +YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER +PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE +POSSIBILITY OF SUCH DAMAGES. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest +to attach them to the start of each source file to most effectively +convey the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License along + with this program; if not, write to the Free Software Foundation, Inc., + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + +Also add information on how to contact you by electronic and paper mail. + +If the program is interactive, make it output a short notice like this +when it starts in an interactive mode: + + Gnomovision version 69, Copyright (C) year name of author + Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. + This is free software, and you are welcome to redistribute it + under certain conditions; type `show c' for details. + +The hypothetical commands `show w' and `show c' should show the appropriate +parts of the General Public License. Of course, the commands you use may +be called something other than `show w' and `show c'; they could even be +mouse-clicks or menu items--whatever suits your program. + +You should also get your employer (if you work as a programmer) or your +school, if any, to sign a "copyright disclaimer" for the program, if +necessary. Here is a sample; alter the names: + + Yoyodyne, Inc., hereby disclaims all copyright interest in the program + `Gnomovision' (which makes passes at compilers) written by James Hacker. + + , 1 April 1989 + Ty Coon, President of Vice + +This General Public License does not permit incorporating your program into +proprietary programs. If your program is a subroutine library, you may +consider it more useful to permit linking proprietary applications with the +library. If this is what you want to do, use the GNU Lesser General +Public License instead of this License. diff --git a/README.md b/README.md new file mode 100644 index 0000000..4896ce9 --- /dev/null +++ b/README.md @@ -0,0 +1,20 @@ +# Python-With-Gtk-Template +A template project for Python with Gtk applications. + +### Requirements +* PyGObject +* setproctitle +* pyxdg + +### Note +There are a "\" 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. diff --git a/plugins/README.txt b/plugins/README.txt new file mode 100644 index 0000000..4173ddd --- /dev/null +++ b/plugins/README.txt @@ -0,0 +1,2 @@ +### Note +Copy the example and rename it to your desired name. The Main class and passed in arguments are required. You don't necessarily need to use the passed in socket_id or event_system. diff --git a/plugins/template/__init__.py b/plugins/template/__init__.py new file mode 100644 index 0000000..d36fa8c --- /dev/null +++ b/plugins/template/__init__.py @@ -0,0 +1,3 @@ +""" + Pligin Module +""" diff --git a/plugins/template/__main__.py b/plugins/template/__main__.py new file mode 100644 index 0000000..a576329 --- /dev/null +++ b/plugins/template/__main__.py @@ -0,0 +1,3 @@ +""" + Pligin Package +""" diff --git a/plugins/template/manifest.json b/plugins/template/manifest.json new file mode 100644 index 0000000..4dcbf47 --- /dev/null +++ b/plugins/template/manifest.json @@ -0,0 +1,13 @@ +{ + "manifest": { + "name": "Example Plugin", + "author": "John Doe", + "version": "0.0.1", + "support": "", + "requests": { + "ui_target": "plugin_control_list", + "pass_fm_events": "true", + "bind_keys": ["Example Plugin||send_message:f"] + } + } +} diff --git a/plugins/template/plugin.py b/plugins/template/plugin.py new file mode 100644 index 0000000..c52c0ff --- /dev/null +++ b/plugins/template/plugin.py @@ -0,0 +1,51 @@ +# Python imports +import os +import threading +import subprocess +import time + +# Lib imports +import gi +gi.require_version('Gtk', '3.0') +from gi.repository import Gtk + +# Application imports +from plugins.plugin_base import PluginBase + + + + +# NOTE: Threads WILL NOT die with parent's destruction. +def threaded(fn): + def wrapper(*args, **kwargs): + threading.Thread(target=fn, args=args, kwargs=kwargs, daemon=False).start() + return wrapper + +# NOTE: Threads WILL die with parent's destruction. +def daemon_threaded(fn): + def wrapper(*args, **kwargs): + threading.Thread(target=fn, args=args, kwargs=kwargs, daemon=True).start() + return wrapper + + + + +class Plugin(PluginBase): + def __init__(self): + super().__init__() + + self.name = "Example Plugin" # NOTE: Need to remove after establishing private bidirectional 1-1 message bus + # where self.name should not be needed for message comms + + + def generate_reference_ui_element(self): + button = Gtk.Button(label=self.name) + button.connect("button-release-event", self.send_message) + return button + + def run(self): + ... + + def send_message(self, widget=None, eve=None): + message = "Hello, World!" + event_system.emit("display_message", ("warning", message, None)) diff --git a/src/__builtins__.py b/src/__builtins__.py new file mode 100644 index 0000000..c7b3d32 --- /dev/null +++ b/src/__builtins__.py @@ -0,0 +1,43 @@ +# Python imports +import builtins +import threading + +# Lib imports + +# Application imports +from utils.event_system import EventSystem +from utils.endpoint_registry import EndpointRegistry +from utils.keybindings import Keybindings +from utils.logger import Logger +from utils.settings import Settings + + + +# NOTE: Threads WILL NOT die with parent's destruction. +def threaded_wrapper(fn): + def wrapper(*args, **kwargs): + threading.Thread(target=fn, args=args, kwargs=kwargs, daemon=False).start() + return wrapper + +# NOTE: Threads WILL die with parent's destruction. +def daemon_threaded_wrapper(fn): + def wrapper(*args, **kwargs): + threading.Thread(target=fn, args=args, kwargs=kwargs, daemon=True).start() + return wrapper + + + +# NOTE: Just reminding myself we can add to builtins two different ways... +# __builtins__.update({"event_system": Builtins()}) +builtins.app_name = "" +builtins.keybindings = Keybindings() +builtins.event_system = EventSystem() +builtins.endpoint_registry = EndpointRegistry() +builtins.settings = Settings() +builtins.logger = Logger(settings.get_home_config_path(), \ + _ch_log_lvl=settings.get_ch_log_lvl(), \ + _fh_log_lvl=settings.get_fh_log_lvl()).get_logger() + +builtins.threaded = threaded_wrapper +builtins.daemon_threaded = daemon_threaded_wrapper +builtins.event_sleep_time = 0.05 diff --git a/src/__init__.py b/src/__init__.py new file mode 100644 index 0000000..90dc8da --- /dev/null +++ b/src/__init__.py @@ -0,0 +1,3 @@ +""" + Start of package. +""" diff --git a/src/__main__.py b/src/__main__.py new file mode 100644 index 0000000..8ab4870 --- /dev/null +++ b/src/__main__.py @@ -0,0 +1,52 @@ +#!/usr/bin/python3 + +# Python imports +import argparse +import faulthandler +import traceback +from setproctitle import setproctitle + +import tracemalloc +tracemalloc.start() + +# Lib imports +import gi +gi.require_version('Gtk', '3.0') +from gi.repository import Gtk + +# Application imports +from __builtins__ import * +from app import Application + + + + +if __name__ == "__main__": + ''' Set process title, get arguments, and create GTK main thread. ''' + + try: + setproctitle(f'{app_name}') + faulthandler.enable() # For better debug info + + parser = argparse.ArgumentParser() + # Add long and short arguments + parser.add_argument("--debug", "-d", default="false", help="Do extra console messaging.") + parser.add_argument("--trace-debug", "-td", default="false", help="Disable saves, ignore IPC lock, do extra console messaging.") + parser.add_argument("--new-tab", "-nt", default="false", help="Opens a 'New Tab' if a handler is set for it.") + parser.add_argument("--file", "-f", default="default", help="JUST SOME FILE ARG.") + + # Read arguments (If any...) + args, unknownargs = parser.parse_known_args() + + if args.debug == "true": + settings.set_debug(True) + + if args.trace_debug == "true": + settings.set_trace_debug(True) + + settings.do_dirty_start_check() + Application(args, unknownargs) + Gtk.main() + except Exception as e: + traceback.print_exc() + quit() diff --git a/src/app.py b/src/app.py new file mode 100644 index 0000000..1ea9b36 --- /dev/null +++ b/src/app.py @@ -0,0 +1,35 @@ +# Python imports +import os + +# Lib imports + +# Application imports +from utils.ipc_server import IPCServer +from core.window import Window + + +class AppLaunchException(Exception): + ... + + + +class Application(IPCServer): + ''' Create Settings and Controller classes. Bind signal to Builder. Inherit from Builtins to bind global methods and classes.''' + + def __init__(self, args, unknownargs): + super(Application, self).__init__() + if not settings.is_trace_debug(): + try: + self.create_ipc_listener() + except Exception: + ... + + if not self.is_ipc_alive: + for arg in unknownargs + [args.new_tab,]: + if os.path.isdir(arg): + message = f"FILE|{arg}" + self.send_ipc_message(message) + + raise AppLaunchException(f"{app_name} IPC Server Exists: Will send path(s) to it and close...") + + Window(args, unknownargs) diff --git a/src/core/__init__.py b/src/core/__init__.py new file mode 100644 index 0000000..90cfadc --- /dev/null +++ b/src/core/__init__.py @@ -0,0 +1,3 @@ +""" + Gtk Bound Signal Module +""" diff --git a/src/core/controller.py b/src/core/controller.py new file mode 100644 index 0000000..1ca363f --- /dev/null +++ b/src/core/controller.py @@ -0,0 +1,59 @@ +# Python imports + +# Lib imports +import gi +gi.require_version('Gtk', '3.0') +gi.require_version('Gdk', '3.0') +from gi.repository import Gtk +from gi.repository import Gdk +from gi.repository import GLib + +# Application imports +from .mixins.signals_mixins import SignalsMixins +from .mixins.dummy_mixin import DummyMixin +from .controller_data import ControllerData +from .core_widget import CoreWidget + + + + +class Controller(DummyMixin, SignalsMixins, ControllerData): + def __init__(self, args, unknownargs): + self.setup_controller_data() + + self._setup_styling() + self._setup_signals() + self._subscribe_to_events() + + self.print_hello_world() # A mixin method from the DummyMixin file + + logger.info(f"Made it past {self.__class__} loading...") + + + def _setup_styling(self): + ... + + def _setup_signals(self): + self.window.connect("focus-out-event", self.unset_keys_and_data) + self.window.connect("key-press-event", self.on_global_key_press_controller) + self.window.connect("key-release-event", self.on_global_key_release_controller) + + def _subscribe_to_events(self): + event_system.subscribe("handle_file_from_ipc", self.handle_file_from_ipc) + event_system.subscribe("tggl_top_main_menubar", self._tggl_top_main_menubar) + + def load_glade_file(self): + self.builder = Gtk.Builder() + self.builder.add_from_file(settings.get_glade_file()) + self.builder.expose_object("main_window", self.window) + + settings.set_builder(self.builder) + self.core_widget = CoreWidget() + + settings.register_signals_to_builder([self, self.core_widget]) + + def get_core_widget(self): + return self.core_widget + + def _tggl_top_main_menubar(self): + print("_tggl_top_main_menubar > stub...") diff --git a/src/core/controller_data.py b/src/core/controller_data.py new file mode 100644 index 0000000..8ac1b71 --- /dev/null +++ b/src/core/controller_data.py @@ -0,0 +1,69 @@ +# Python imports +import os +import subprocess + +# Lib imports + +# Application imports +from plugins.plugins_controller import PluginsController + + + + +class ControllerData: + ''' ControllerData contains most of the state of the app at ay given time. It also has some support methods. ''' + + def setup_controller_data(self) -> None: + self.window = settings.get_main_window() + self.builder = None + self.core_widget = None + self.was_midified_key = False + self.ctrl_down = False + self.shift_down = False + self.alt_down = False + + self.load_glade_file() + self.plugins = PluginsController() + + + def clear_console(self) -> None: + ''' Clears the terminal screen. ''' + os.system('cls' if os.name == 'nt' else 'clear') + + def call_method(self, _method_name: str, data: type) -> type: + ''' + Calls a method from scope of class. + + Parameters: + a (obj): self + b (str): method name to be called + c (*): Data (if any) to be passed to the method. + Note: It must be structured according to the given methods requirements. + + Returns: + Return data is that which the calling method gives. + ''' + method_name = str(_method_name) + method = getattr(self, method_name, lambda data: f"No valid key passed...\nkey={method_name}\nargs={data}") + return method(*data) if data else method() + + def has_method(self, obj: type, method: type) -> type: + ''' Checks if a given method exists. ''' + return callable(getattr(obj, method, None)) + + def clear_children(self, widget: type) -> None: + ''' Clear children of a gtk widget. ''' + for child in widget.get_children(): + widget.remove(child) + + def get_clipboard_data(self, encoding="utf-8") -> str: + proc = subprocess.Popen(['xclip','-selection', 'clipboard', '-o'], stdout=subprocess.PIPE) + retcode = proc.wait() + data = proc.stdout.read() + return data.decode(encoding).strip() + + def set_clipboard_data(self, data: type, encoding="utf-8") -> None: + proc = subprocess.Popen(['xclip','-selection','clipboard'], stdin=subprocess.PIPE) + proc.stdin.write(data.encode(encoding)) + proc.stdin.close() + retcode = proc.wait() diff --git a/src/core/core_widget.py b/src/core/core_widget.py new file mode 100644 index 0000000..2775c0e --- /dev/null +++ b/src/core/core_widget.py @@ -0,0 +1,44 @@ +# Python imports + +# Lib imports +import gi +gi.require_version('Gtk', '3.0') +from gi.repository import Gtk + +# Application imports + + + + +class CoreWidget(Gtk.Box): + def __init__(self): + super(CoreWidget, self).__init__() + + self._builder = settings.get_builder() + + self._setup_styling() + self._setup_signals() + self._load_widgets() + + self.show_all() + + + def _setup_styling(self): + self.set_orientation(1) + + def _setup_signals(self): + ... + + def _load_widgets(self): + glade_box = self._builder.get_object("glade_box") + button = Gtk.Button(label="Click Me!") + + button.connect("clicked", self._hello_world) + + self.add(button) + self.add(glade_box) + + + + def _hello_world(self, widget=None, eve=None): + print("Hello, World!") diff --git a/src/core/mixins/__init__.py b/src/core/mixins/__init__.py new file mode 100644 index 0000000..4589fc7 --- /dev/null +++ b/src/core/mixins/__init__.py @@ -0,0 +1,3 @@ +""" + Generic Mixins Module +""" diff --git a/src/core/mixins/dummy_mixin.py b/src/core/mixins/dummy_mixin.py new file mode 100644 index 0000000..675bb81 --- /dev/null +++ b/src/core/mixins/dummy_mixin.py @@ -0,0 +1,14 @@ +# Python imports + +# Lib imports + +# Application imports + + + + +class DummyMixin: + """ DummyMixin is an example of how mixins are used and structured in a project. """ + + def print_hello_world(self) -> None: + print("Hello, World!") diff --git a/src/core/mixins/signals/__init__.py b/src/core/mixins/signals/__init__.py new file mode 100644 index 0000000..03c3ec2 --- /dev/null +++ b/src/core/mixins/signals/__init__.py @@ -0,0 +1,3 @@ +""" + Signals module +""" diff --git a/src/core/mixins/signals/ipc_signals_mixin.py b/src/core/mixins/signals/ipc_signals_mixin.py new file mode 100644 index 0000000..34c6555 --- /dev/null +++ b/src/core/mixins/signals/ipc_signals_mixin.py @@ -0,0 +1,17 @@ +# Python imports + +# Lib imports + +# Application imports + + + + +class IPCSignalsMixin: + """ IPCSignalsMixin handle messages from another starting solarfm process. """ + + def print_to_console(self, message=None): + print(message) + + def handle_file_from_ipc(self, path: str) -> None: + print(f"Path From IPC: {path}") diff --git a/src/core/mixins/signals/keyboard_signals_mixin.py b/src/core/mixins/signals/keyboard_signals_mixin.py new file mode 100644 index 0000000..1a99277 --- /dev/null +++ b/src/core/mixins/signals/keyboard_signals_mixin.py @@ -0,0 +1,94 @@ +# Python imports +import re + +# Lib imports +import gi +gi.require_version('Gtk', '3.0') +gi.require_version('Gdk', '3.0') +from gi.repository import Gtk +from gi.repository import Gdk + +# Application imports + + + +valid_keyvalue_pat = re.compile(r"[a-z0-9A-Z-_\[\]\(\)\| ]") + + + +class KeyboardSignalsMixin: + """ KeyboardSignalsMixin keyboard hooks controller. """ + + # TODO: Need to set methods that use this to somehow check the keybindings state instead. + def unset_keys_and_data(self, widget=None, eve=None): + self.ctrl_down = False + self.shift_down = False + self.alt_down = False + + def on_global_key_press_controller(self, eve, user_data): + keyname = Gdk.keyval_name(user_data.keyval).lower() + modifiers = Gdk.ModifierType(user_data.get_state() & ~Gdk.ModifierType.LOCK_MASK) + + self.was_midified_key = True if modifiers != 0 else False + + if keyname.replace("_l", "").replace("_r", "") in ["control", "alt", "shift"]: + if "control" in keyname: + self.ctrl_down = True + if "shift" in keyname: + self.shift_down = True + if "alt" in keyname: + self.alt_down = True + + def on_global_key_release_controller(self, widget, event): + """ Handler for keyboard events """ + keyname = Gdk.keyval_name(event.keyval).lower() + modifiers = Gdk.ModifierType(event.get_state() & ~Gdk.ModifierType.LOCK_MASK) + + if keyname.replace("_l", "").replace("_r", "") in ["control", "alt", "shift"]: + should_return = self.was_midified_key and (self.ctrl_down or self.shift_down or self.alt_down) + + if "control" in keyname: + self.ctrl_down = False + if "shift" in keyname: + self.shift_down = False + if "alt" in keyname: + self.alt_down = False + + # NOTE: In effect a filter after releasing a modifier and we have a modifier mapped + if should_return: + self.was_midified_key = False + return + + mapping = keybindings.lookup(event) + logger.debug(f"on_global_key_release_controller > key > {keyname}") + logger.debug(f"on_global_key_release_controller > keyval > {event.keyval}") + logger.debug(f"on_global_key_release_controller > mapping > {mapping}") + + if mapping: + # See if in controller scope + try: + getattr(self, mapping)() + return True + except Exception: + # Must be plugins scope, event call, OR we forgot to add method to controller scope + if "||" in mapping: + sender, eve_type = mapping.split("||") + else: + sender = "" + eve_type = mapping + + self.handle_key_event_system(sender, eve_type) + else: + logger.debug(f"on_global_key_release_controller > key > {keyname}") + + if self.ctrl_down: + if not keyname in ["1", "kp_1", "2", "kp_2", "3", "kp_3", "4", "kp_4"]: + self.handle_key_event_system(None, mapping) + else: + ... + + def handle_key_event_system(self, sender, eve_type): + event_system.emit(eve_type) + + def keyboard_close_tab(self): + ... diff --git a/src/core/mixins/signals_mixins.py b/src/core/mixins/signals_mixins.py new file mode 100644 index 0000000..76515f6 --- /dev/null +++ b/src/core/mixins/signals_mixins.py @@ -0,0 +1,13 @@ +# Python imports + +# Lib imports +from .signals.ipc_signals_mixin import IPCSignalsMixin +from .signals.keyboard_signals_mixin import KeyboardSignalsMixin + +# Application imports + + + + +class SignalsMixins(KeyboardSignalsMixin, IPCSignalsMixin): + ... diff --git a/src/core/window.py b/src/core/window.py new file mode 100644 index 0000000..45c79b5 --- /dev/null +++ b/src/core/window.py @@ -0,0 +1,95 @@ +# Python imports +import time +import signal + +# Lib imports +import gi +import cairo +gi.require_version('Gtk', '3.0') +gi.require_version('Gdk', '3.0') +from gi.repository import Gtk +from gi.repository import Gdk +from gi.repository import GLib + +# Application imports +from core.controller import Controller + + +class ControllerStartExceptiom(Exception): + ... + + + + +class Window(Gtk.ApplicationWindow): + """docstring for Window.""" + + def __init__(self, args, unknownargs): + super(Window, self).__init__() + + self._controller = None + + self._set_window_data() + self._setup_styling() + self._setup_signals() + self._subscribe_to_events() + + settings.set_main_window(self) + self._load_widgets(args, unknownargs) + + self.show() + + + def _setup_styling(self): + self.set_default_size(settings.get_main_window_width(), + settings.get_main_window_height()) + self.set_title(f"{app_name}") + self.set_icon_from_file( settings.get_window_icon() ) + self.set_gravity(5) # 5 = CENTER + self.set_position(1) # 1 = CENTER, 4 = CENTER_ALWAYS + + def _setup_signals(self): + self.connect("delete-event", self._tear_down) + GLib.unix_signal_add(GLib.PRIORITY_DEFAULT, signal.SIGINT, self._tear_down) + + def _subscribe_to_events(self): + event_system.subscribe("tear_down", self._tear_down) + + def _load_widgets(self, args, unknownargs): + if settings.is_debug(): + self.set_interactive_debugging(True) + + + self._controller = Controller(args, unknownargs) + if not self._controller: + raise ControllerStartException("Controller exited and doesn't exist...") + + self.add( self._controller.get_core_widget() ) + + def _set_window_data(self) -> None: + screen = self.get_screen() + visual = screen.get_rgba_visual() + + if visual != None and screen.is_composited(): + self.set_visual(visual) + self.set_app_paintable(True) + self.connect("draw", self._area_draw) + + # bind css file + cssProvider = Gtk.CssProvider() + cssProvider.load_from_path( settings.get_css_file() ) + screen = Gdk.Screen.get_default() + styleContext = Gtk.StyleContext() + styleContext.add_provider_for_screen(screen, cssProvider, Gtk.STYLE_PROVIDER_PRIORITY_USER) + + def _area_draw(self, widget: Gtk.ApplicationWindow, cr: cairo.Context) -> None: + cr.set_source_rgba( *settings.get_paint_bg_color() ) + cr.set_operator(cairo.OPERATOR_SOURCE) + cr.paint() + cr.set_operator(cairo.OPERATOR_OVER) + + + def _tear_down(self, widget=None, eve=None): + settings.clear_pid() + time.sleep(event_sleep_time) + Gtk.main_quit() diff --git a/src/plugins/__init__.py b/src/plugins/__init__.py new file mode 100644 index 0000000..5624b32 --- /dev/null +++ b/src/plugins/__init__.py @@ -0,0 +1,3 @@ +""" + Gtk Bound Plugins Module +""" diff --git a/src/plugins/manifest.py b/src/plugins/manifest.py new file mode 100644 index 0000000..4088eed --- /dev/null +++ b/src/plugins/manifest.py @@ -0,0 +1,64 @@ +# Python imports +import os +import json +from os.path import join + +# Lib imports + +# Application imports + + + + +class ManifestProcessor(Exception): + ... + + +class Plugin: + path: str = None + name: str = None + author: str = None + version: str = None + support: str = None + requests:{} = None + reference: type = None + + +class ManifestProcessor: + def __init__(self, path, builder): + manifest = join(path, "manifest.json") + if not os.path.exists(manifest): + raise Exception("Invalid Plugin Structure: Plugin doesn't have 'manifest.json'. Aboarting load...") + + self._path = path + self._builder = builder + with open(manifest) as f: + data = json.load(f) + self._manifest = data["manifest"] + self._plugin = self.collect_info() + + def collect_info(self) -> Plugin: + plugin = Plugin() + plugin.path = self._path + plugin.name = self._manifest["name"] + plugin.author = self._manifest["author"] + plugin.version = self._manifest["version"] + plugin.support = self._manifest["support"] + plugin.requests = self._manifest["requests"] + + return plugin + + def get_loading_data(self): + loading_data = {} + requests = self._plugin.requests + keys = requests.keys() + + if "pass_events" in keys: + if requests["pass_events"] in ["true"]: + loading_data["pass_events"] = True + + if "bind_keys" in keys: + if isinstance(requests["bind_keys"], list): + loading_data["bind_keys"] = requests["bind_keys"] + + return self._plugin, loading_data diff --git a/src/plugins/plugin_base.py b/src/plugins/plugin_base.py new file mode 100644 index 0000000..3130bb4 --- /dev/null +++ b/src/plugins/plugin_base.py @@ -0,0 +1,61 @@ +# Python imports +import os +import time + +# Lib imports + +# Application imports + + +class PluginBaseException(Exception): + ... + + +class PluginBase: + def __init__(self): + self.name = "Example Plugin" # NOTE: Need to remove after establishing private bidirectional 1-1 message bus + # where self.name should not be needed for message comms + + self._builder = None + self._ui_objects = None + self._event_system = None + + + def run(self): + """ + Must define regardless if needed and can 'pass' if plugin doesn't need it. + Is intended to be used to setup internal signals or custom Gtk Builders/UI logic. + """ + raise PluginBaseException("Method hasn't been overriden...") + + def generate_reference_ui_element(self): + """ + Requests Key: 'ui_target': "plugin_control_list", + Must define regardless if needed and can 'pass' if plugin doesn't use it. + Must return a widget if "ui_target" is set. + """ + raise PluginBaseException("Method hasn't been overriden...") + + def set_event_system(self, event_system): + """ + Requests Key: 'pass_events': "true" + Must define in plugin if "pass_events" is set to "true" string. + """ + self._event_system = event_system + + def set_ui_object_collection(self, ui_objects): + """ + Requests Key: "pass_ui_objects": [""] + Request reference to a UI component. Will be passed back as array to plugin. + Must define in plugin if set and an array of valid glade UI IDs is given. + """ + self._ui_objects = ui_objects + + def subscribe_to_events(self): + ... + + + def clear_children(self, widget: type) -> None: + """ Clear children of a gtk widget. """ + for child in widget.get_children(): + widget.remove(child) diff --git a/src/plugins/plugins_controller.py b/src/plugins/plugins_controller.py new file mode 100644 index 0000000..f0561f7 --- /dev/null +++ b/src/plugins/plugins_controller.py @@ -0,0 +1,119 @@ +# Python imports +import os +import sys +import importlib +import traceback +from os.path import join +from os.path import isdir + +# Lib imports +import gi +gi.require_version('Gtk', '3.0') +from gi.repository import Gtk +from gi.repository import Gio + +# Application imports +from .manifest import Plugin +from .manifest import ManifestProcessor + + + + +class InvalidPluginException(Exception): + ... + + +class PluginsController: + """PluginsController controller""" + + def __init__(self): + path = os.path.dirname(os.path.realpath(__file__)) + sys.path.insert(0, path) # NOTE: I think I'm not using this correctly... + + self._builder = settings.get_builder() + self._plugins_path = settings.get_plugins_path() + + self._plugins_dir_watcher = None + self._plugin_collection = [] + + + def launch_plugins(self) -> None: + self._set_plugins_watcher() + self.load_plugins() + + def _set_plugins_watcher(self) -> None: + self._plugins_dir_watcher = Gio.File.new_for_path(self._plugins_path) \ + .monitor_directory(Gio.FileMonitorFlags.WATCH_MOVES, Gio.Cancellable()) + self._plugins_dir_watcher.connect("changed", self._on_plugins_changed, ()) + + def _on_plugins_changed(self, file_monitor, file, other_file=None, eve_type=None, data=None): + if eve_type in [Gio.FileMonitorEvent.CREATED, Gio.FileMonitorEvent.DELETED, + Gio.FileMonitorEvent.RENAMED, Gio.FileMonitorEvent.MOVED_IN, + Gio.FileMonitorEvent.MOVED_OUT]: + self.reload_plugins(file) + + def load_plugins(self, file: str = None) -> None: + print(f"Loading plugins...") + parent_path = os.getcwd() + + for path, folder in [[join(self._plugins_path, item), item] if os.path.isdir(join(self._plugins_path, item)) else None for item in os.listdir(self._plugins_path)]: + try: + target = join(path, "plugin.py") + manifest = ManifestProcessor(path, self._builder) + + if not os.path.exists(target): + raise InvalidPluginException("Invalid Plugin Structure: Plugin doesn't have 'plugin.py'. Aboarting load...") + + plugin, loading_data = manifest.get_loading_data() + module = self.load_plugin_module(path, folder, target) + self.execute_plugin(module, plugin, loading_data) + except Exception as e: + print(f"Malformed Plugin: Not loading -->: '{folder}' !") + traceback.print_exc() + + os.chdir(parent_path) + + + def load_plugin_module(self, path, folder, target): + os.chdir(path) + + locations = [] + self.collect_search_locations(path, locations) + + spec = importlib.util.spec_from_file_location(folder, target, submodule_search_locations = locations) + module = importlib.util.module_from_spec(spec) + sys.modules[folder] = module + spec.loader.exec_module(module) + + return module + + def collect_search_locations(self, path, locations): + locations.append(path) + for file in os.listdir(path): + _path = os.path.join(path, file) + if os.path.isdir(_path): + self.collect_search_locations(_path, locations) + + def execute_plugin(self, module: type, plugin: Plugin, loading_data: []): + plugin.reference = module.Plugin() + keys = loading_data.keys() + + if "ui_target" in keys: + loading_data["ui_target"].add( plugin.reference.generate_reference_ui_element() ) + loading_data["ui_target"].show_all() + + if "pass_ui_objects" in keys: + plugin.reference.set_ui_object_collection( loading_data["pass_ui_objects"] ) + + if "pass_events" in keys: + plugin.reference.set_fm_event_system(event_system) + plugin.reference.subscribe_to_events() + + if "bind_keys" in keys: + keybindings.append_bindings( loading_data["bind_keys"] ) + + plugin.reference.run() + self._plugin_collection.append(plugin) + + def reload_plugins(self, file: str = None) -> None: + print(f"Reloading plugins... stub.") diff --git a/src/utils/__init__.py b/src/utils/__init__.py new file mode 100644 index 0000000..a8e5edd --- /dev/null +++ b/src/utils/__init__.py @@ -0,0 +1,3 @@ +""" + Utils module +""" diff --git a/src/utils/endpoint_registry.py b/src/utils/endpoint_registry.py new file mode 100644 index 0000000..15ffa9e --- /dev/null +++ b/src/utils/endpoint_registry.py @@ -0,0 +1,22 @@ +# Python imports + +# Lib imports + +# Application imports + + + + +class EndpointRegistry(): + def __init__(self): + self._endpoints = {} + + def register(self, rule, **options): + def decorator(f): + self._endpoints[rule] = f + return f + + return decorator + + def get_endpoints(self): + return self._endpoints diff --git a/src/utils/event_system.py b/src/utils/event_system.py new file mode 100644 index 0000000..88f7299 --- /dev/null +++ b/src/utils/event_system.py @@ -0,0 +1,54 @@ +# Python imports +from collections import defaultdict + +# Lib imports + +# Application imports + + + + +class EventSystem: + """ Create event system. """ + + def __init__(self): + self.subscribers = defaultdict(list) + + + def subscribe(self, event_type, fn): + self.subscribers[event_type].append(fn) + + def unsubscribe(self, event_type, fn): + self.subscribers[event_type].remove(fn) + + def unsubscribe_all(self, event_type): + self.subscribers.pop(event_type, None) + + def emit(self, event_type, data = None): + if event_type in self.subscribers: + for fn in self.subscribers[event_type]: + if data: + if hasattr(data, '__iter__') and not type(data) is str: + fn(*data) + else: + fn(data) + else: + fn() + + def emit_and_await(self, event_type, data = None): + """ NOTE: Should be used when signal has only one listener and vis-a-vis """ + if event_type in self.subscribers: + response = None + for fn in self.subscribers[event_type]: + if data: + if hasattr(data, '__iter__') and not type(data) is str: + response = fn(*data) + else: + response = fn(data) + else: + response = fn() + + if not response in (None, ''): + break + + return response diff --git a/src/utils/ipc_server.py b/src/utils/ipc_server.py new file mode 100644 index 0000000..8226247 --- /dev/null +++ b/src/utils/ipc_server.py @@ -0,0 +1,105 @@ +# Python imports +import os +import threading +import time +from multiprocessing.connection import Client +from multiprocessing.connection import Listener + +# Lib imports + +# Application imports + + + + +class IPCServer: + """ Create a listener so that other {app_name} instances send requests back to existing instance. """ + def __init__(self, ipc_address: str = '127.0.0.1', conn_type: str = "socket"): + self.is_ipc_alive = False + self._ipc_port = 4848 + self._ipc_address = ipc_address + self._conn_type = conn_type + self._ipc_authkey = b'' + bytes(f'{app_name}-ipc', 'utf-8') + self._ipc_timeout = 15.0 + + if conn_type == "socket": + self._ipc_address = f'/tmp/{app_name}-ipc.sock' + elif conn_type == "full_network": + self._ipc_address = '0.0.0.0' + elif conn_type == "full_network_unsecured": + self._ipc_authkey = None + self._ipc_address = '0.0.0.0' + elif conn_type == "local_network_unsecured": + self._ipc_authkey = None + + self._subscribe_to_events() + + def _subscribe_to_events(self): + event_system.subscribe("post_file_to_ipc", self.send_ipc_message) + + + def create_ipc_listener(self) -> None: + if self._conn_type == "socket": + if os.path.exists(self._ipc_address) and settings.is_dirty_start(): + os.unlink(self._ipc_address) + + listener = Listener(address=self._ipc_address, family="AF_UNIX", authkey=self._ipc_authkey) + elif "unsecured" not in self._conn_type: + listener = Listener((self._ipc_address, self._ipc_port), authkey=self._ipc_authkey) + else: + listener = Listener((self._ipc_address, self._ipc_port)) + + + self.is_ipc_alive = True + self._run_ipc_loop(listener) + + @daemon_threaded + def _run_ipc_loop(self, listener) -> None: + while True: + conn = listener.accept() + start_time = time.perf_counter() + self._handle_ipc_message(conn, start_time) + + listener.close() + + def _handle_ipc_message(self, conn, start_time) -> None: + while True: + msg = conn.recv() + if settings.is_debug(): + print(msg) + + if "FILE|" in msg: + file = msg.split("FILE|")[1].strip() + if file: + event_system.emit("handle_file_from_ipc", file) + + conn.close() + break + + + if msg in ['close connection', 'close server']: + conn.close() + break + + # NOTE: Not perfect but insures we don't lock up the connection for too long. + end_time = time.perf_counter() + if (end_time - start_time) > self._ipc_timeout: + conn.close() + break + + + def send_ipc_message(self, message: str = "Empty Data...") -> None: + try: + if self._conn_type == "socket": + conn = Client(address=self._ipc_address, family="AF_UNIX", authkey=self._ipc_authkey) + elif "unsecured" not in self._conn_type: + conn = Client((self._ipc_address, self._ipc_port), authkey=self._ipc_authkey) + else: + conn = Client((self._ipc_address, self._ipc_port)) + + conn.send(message) + conn.close() + except ConnectionRefusedError as e: + print("Connection refused...") + except Exception as e: + print(repr(e)) diff --git a/src/utils/keybindings.py b/src/utils/keybindings.py new file mode 100644 index 0000000..cb47685 --- /dev/null +++ b/src/utils/keybindings.py @@ -0,0 +1,127 @@ +# Python imports +import re + +# Lib imports +import gi +gi.require_version('Gdk', '3.0') +from gi.repository import Gdk + +# Application imports + + + + +def logger(log = ""): + print(log) + + +class KeymapError(Exception): + """ Custom exception for errors in keybinding configurations """ + +MODIFIER = re.compile('<([^<]+)>') +class Keybindings: + """ Class to handle loading and lookup of Terminator keybindings """ + + modifiers = { + 'ctrl': Gdk.ModifierType.CONTROL_MASK, + 'control': Gdk.ModifierType.CONTROL_MASK, + 'primary': Gdk.ModifierType.CONTROL_MASK, + 'shift': Gdk.ModifierType.SHIFT_MASK, + 'alt': Gdk.ModifierType.MOD1_MASK, + 'super': Gdk.ModifierType.SUPER_MASK, + 'hyper': Gdk.ModifierType.HYPER_MASK, + 'mod2': Gdk.ModifierType.MOD2_MASK + } + + empty = {} + keys = None + _masks = None + _lookup = None + + def __init__(self): + self.keymap = Gdk.Keymap.get_default() + self.configure({}) + + def configure(self, bindings): + """ Accept new bindings and reconfigure with them """ + self.keys = bindings + self.reload() + + def reload(self): + """ Parse bindings and mangle into an appropriate form """ + self._lookup = {} + self._masks = 0 + + for action, bindings in list(self.keys.items()): + if isinstance(bindings, list): + bindings = (*bindings,) + elif not isinstance(bindings, tuple): + bindings = (bindings,) + + + for binding in bindings: + if not binding or binding == "None": + continue + + try: + keyval, mask = self._parsebinding(binding) + # Does much the same, but with worse error handling. + # keyval, mask = Gtk.accelerator_parse(binding) + except KeymapError as e: + logger(f"Keybinding reload failed to parse binding '{binding}': {e}") + else: + if mask & Gdk.ModifierType.SHIFT_MASK: + if keyval == Gdk.KEY_Tab: + keyval = Gdk.KEY_ISO_Left_Tab + mask &= ~Gdk.ModifierType.SHIFT_MASK + else: + keyvals = Gdk.keyval_convert_case(keyval) + if keyvals[0] != keyvals[1]: + keyval = keyvals[1] + mask &= ~Gdk.ModifierType.SHIFT_MASK + else: + keyval = Gdk.keyval_to_lower(keyval) + + self._lookup.setdefault(mask, {}) + self._lookup[mask][keyval] = action + self._masks |= mask + + def _parsebinding(self, binding): + """ Parse an individual binding using Gtk's binding function """ + mask = 0 + modifiers = re.findall(MODIFIER, binding) + + if modifiers: + for modifier in modifiers: + mask |= self._lookup_modifier(modifier) + + key = re.sub(MODIFIER, '', binding) + if key == '': + raise KeymapError('No key found!') + + keyval = Gdk.keyval_from_name(key) + + if keyval == 0: + raise KeymapError(f"Key '{key}' is unrecognised...") + return (keyval, mask) + + def _lookup_modifier(self, modifier): + """ Map modifier names to gtk values """ + try: + return self.modifiers[modifier.lower()] + except KeyError: + raise KeymapError(f"Unhandled modifier '<{modifier}>'") + + def lookup(self, event): + """ Translate a keyboard event into a mapped key """ + try: + _found, keyval, _egp, _lvl, consumed = self.keymap.translate_keyboard_state( + event.hardware_keycode, + Gdk.ModifierType(event.get_state() & ~Gdk.ModifierType.LOCK_MASK), + event.group) + except TypeError: + logger(f"Keybinding lookup failed to translate keyboard event: {dir(event)}") + return None + + mask = (event.get_state() & ~consumed) & self._masks + return self._lookup.get(mask, self.empty).get(keyval, None) diff --git a/src/utils/logger.py b/src/utils/logger.py new file mode 100644 index 0000000..6ca2add --- /dev/null +++ b/src/utils/logger.py @@ -0,0 +1,61 @@ +# Python imports +import os +import logging + +# Lib imports + +# Application imports + + + + +class Logger: + """ + Create a new logging object and return it. + :note: + NOSET # Don't know the actual log level of this... (defaulting or literally none?) + Log Levels (From least to most) + Type Value + CRITICAL 50 + ERROR 40 + WARNING 30 + INFO 20 + DEBUG 10 + :param loggerName: Sets the name of the logger object. (Used in log lines) + :param createFile: Whether we create a log file or just pump to terminal + + :return: the logging object we created + """ + + def __init__(self, config_path: str, _ch_log_lvl = logging.CRITICAL, _fh_log_lvl = logging.INFO): + self._CONFIG_PATH = config_path + self.global_lvl = logging.DEBUG # Keep this at highest so that handlers can filter to their desired levels + self.ch_log_lvl = _ch_log_lvl # Prety much the only one we ever change + self.fh_log_lvl = _fh_log_lvl + + def get_logger(self, loggerName: str = "NO_LOGGER_NAME_PASSED", createFile: bool = True) -> logging.Logger: + log = logging.getLogger(loggerName) + log.setLevel(self.global_lvl) + + # Set our log output styles + fFormatter = logging.Formatter('[%(asctime)s] %(pathname)s:%(lineno)d %(levelname)s - %(message)s', '%m-%d %H:%M:%S') + cFormatter = logging.Formatter('%(pathname)s:%(lineno)d] %(levelname)s - %(message)s') + + ch = logging.StreamHandler() + ch.setLevel(level=self.ch_log_lvl) + ch.setFormatter(cFormatter) + log.addHandler(ch) + + if createFile: + folder = self._CONFIG_PATH + file = f"{folder}/application.log" + + if not os.path.exists(folder): + os.mkdir(folder) + + fh = logging.FileHandler(file) + fh.setLevel(level=self.fh_log_lvl) + fh.setFormatter(fFormatter) + log.addHandler(fh) + + return log diff --git a/src/utils/settings/__init__.py b/src/utils/settings/__init__.py new file mode 100644 index 0000000..e07c5a0 --- /dev/null +++ b/src/utils/settings/__init__.py @@ -0,0 +1,4 @@ +""" + Settings module +""" +from .settings import Settings diff --git a/src/utils/settings/settings.py b/src/utils/settings/settings.py new file mode 100644 index 0000000..c3ee5f3 --- /dev/null +++ b/src/utils/settings/settings.py @@ -0,0 +1,158 @@ +# Python imports +import os +import json +import inspect + +# Lib imports + +# Application imports +from .start_check_mixin import StartCheckMixin + + +class MissingConfigError(Exception): + pass + + + +class Settings(StartCheckMixin): + def __init__(self): + self._SCRIPT_PTH = os.path.dirname(os.path.realpath(__file__)) + self._USER_HOME = os.path.expanduser('~') + self._USR_PATH = f"/usr/share/{app_name.lower()}" + + self._USR_CONFIG_FILE = f"{self._USR_PATH}/settings.json" + self._HOME_CONFIG_PATH = f"{self._USER_HOME}/.config/{app_name.lower()}" + self._PLUGINS_PATH = f"{self._HOME_CONFIG_PATH}/plugins" + self._DEFAULT_ICONS = f"{self._HOME_CONFIG_PATH}/icons" + self._CONFIG_FILE = f"{self._HOME_CONFIG_PATH}/settings.json" + self._GLADE_FILE = f"{self._HOME_CONFIG_PATH}/Main_Window.glade" + self._CSS_FILE = f"{self._HOME_CONFIG_PATH}/stylesheet.css" + self._KEY_BINDINGS_FILE = f"{self._HOME_CONFIG_PATH}/key-bindings.json" + self._PID_FILE = f"{self._HOME_CONFIG_PATH}/{app_name.lower()}.pid" + self._WINDOW_ICON = f"{self._DEFAULT_ICONS}/{app_name.lower()}.png" + + if not os.path.exists(self._HOME_CONFIG_PATH): + os.mkdir(self._HOME_CONFIG_PATH) + if not os.path.exists(self._PLUGINS_PATH): + os.mkdir(self._PLUGINS_PATH) + + if not os.path.exists(self._CONFIG_FILE): + import shutil + try: + shutil.copyfile(self._USR_CONFIG_FILE, self._CONFIG_FILE) + except Exception as e: + raise + + if not os.path.exists(self._DEFAULT_ICONS): + self._DEFAULT_ICONS = f"{self._USR_PATH}/icons" + if not os.path.exists(self._DEFAULT_ICONS): + raise MissingConfigError("Unable to find the application icons directory.") + if not os.path.exists(self._GLADE_FILE): + self._GLADE_FILE = f"{self._USR_PATH}/Main_Window.glade" + if not os.path.exists(self._GLADE_FILE): + raise MissingConfigError("Unable to find the application Glade file.") + if not os.path.exists(self._KEY_BINDINGS_FILE): + self._KEY_BINDINGS_FILE = f"{self._USR_PATH}/key-bindings.json" + if not os.path.exists(self._KEY_BINDINGS_FILE): + raise MissingConfigError("Unable to find the application Keybindings file.") + if not os.path.exists(self._CSS_FILE): + self._CSS_FILE = f"{self._USR_PATH}/stylesheet.css" + if not os.path.exists(self._CSS_FILE): + raise MissingConfigError("Unable to find the application Stylesheet file.") + if not os.path.exists(self._WINDOW_ICON): + self._WINDOW_ICON = f"{self._USR_PATH}/icons/{app_name.lower()}.png" + if not os.path.exists(self._WINDOW_ICON): + raise MissingConfigError("Unable to find the application icon.") + + + with open(self._KEY_BINDINGS_FILE) as file: + bindings = json.load(file)["keybindings"] + keybindings.configure(bindings) + + self._main_window = None + self._main_window_w = 800 + self._main_window_h = 600 + self._builder = None + self.PAINT_BG_COLOR = (0, 0, 0, 0.54) + + self._trace_debug = False + self._debug = False + self._dirty_start = False + + self.load_settings() + + + def register_signals_to_builder(self, classes=None): + handlers = {} + + for c in classes: + methods = None + try: + methods = inspect.getmembers(c, predicate=inspect.ismethod) + handlers.update(methods) + except Exception as e: + ... + + self._builder.connect_signals(handlers) + + def set_main_window(self, window): self._main_window = window + def set_builder(self, builder) -> any: self._builder = builder + + + def get_monitor_data(self) -> list: + screen = self._main_window.get_screen() + monitors = [] + for m in range(screen.get_n_monitors()): + monitors.append(screen.get_monitor_geometry(m)) + print("{}x{}+{}+{}".format(monitor.width, monitor.height, monitor.x, monitor.y)) + + return monitors + + def get_main_window(self) -> any: return self._main_window + def get_main_window_width(self) -> any: return self._main_window_w + def get_main_window_height(self) -> any: return self._main_window_h + def get_builder(self) -> any: return self._builder + def get_paint_bg_color(self) -> any: return self.PAINT_BG_COLOR + def get_glade_file(self) -> str: return self._GLADE_FILE + + def get_plugins_path(self) -> str: return self._PLUGINS_PATH + def get_icon_theme(self) -> str: return self._ICON_THEME + def get_css_file(self) -> str: return self._CSS_FILE + def get_home_config_path(self) -> str: return self._HOME_CONFIG_PATH + def get_window_icon(self) -> str: return self._WINDOW_ICON + def get_home_path(self) -> str: return self._USER_HOME + + # Filter returns + def get_office_filter(self) -> tuple: return tuple(self._settings["filters"]["office"]) + def get_vids_filter(self) -> tuple: return tuple(self._settings["filters"]["videos"]) + def get_text_filter(self) -> tuple: return tuple(self._settings["filters"]["text"]) + def get_music_filter(self) -> tuple: return tuple(self._settings["filters"]["music"]) + def get_images_filter(self) -> tuple: return tuple(self._settings["filters"]["images"]) + def get_pdf_filter(self) -> tuple: return tuple(self._settings["filters"]["pdf"]) + + def get_success_color(self) -> str: return self._theming["success_color"] + def get_warning_color(self) -> str: return self._theming["warning_color"] + def get_error_color(self) -> str: return self._theming["error_color"] + + def is_trace_debug(self) -> str: return self._trace_debug + def is_debug(self) -> str: return self._debug + + def get_ch_log_lvl(self) -> str: return self._settings["debugging"]["ch_log_lvl"] + def get_fh_log_lvl(self) -> str: return self._settings["debugging"]["fh_log_lvl"] + + def set_trace_debug(self, trace_debug): + self._trace_debug = trace_debug + + def set_debug(self, debug): + self._debug = debug + + + def load_settings(self): + with open(self._CONFIG_FILE) as f: + self._settings = json.load(f) + self._config = self._settings["config"] + self._theming = self._settings["theming"] + + def save_settings(self): + with open(self._CONFIG_FILE, 'w') as outfile: + json.dump(self._settings, outfile, separators=(',', ':'), indent=4) diff --git a/src/utils/settings/start_check_mixin.py b/src/utils/settings/start_check_mixin.py new file mode 100644 index 0000000..7fba503 --- /dev/null +++ b/src/utils/settings/start_check_mixin.py @@ -0,0 +1,50 @@ +# Python imports +import os +import json +import inspect + +# Lib imports + +# Application imports + + + + +class StartCheckMixin: + def is_dirty_start(self) -> bool: return self._dirty_start + def clear_pid(self): self._clean_pid() + + def do_dirty_start_check(self): + if not os.path.exists(self._PID_FILE): + self._write_new_pid() + else: + with open(self._PID_FILE, "r") as _pid: + pid = _pid.readline().strip() + if pid not in ("", None): + self._check_alive_status(int(pid)) + else: + self._write_new_pid() + + """ Check For the existence of a unix pid. """ + def _check_alive_status(self, pid): + print(f"PID Found: {pid}") + try: + os.kill(pid, 0) + except OSError: + print(f"{app_name} is starting dirty...") + self._dirty_start = True + self._write_new_pid() + return + + print("PID is alive... Let downstream errors (sans debug args) handle app closure propigation.") + + def _write_new_pid(self): + pid = os.getpid() + self._write_pid(pid) + + def _clean_pid(self): + os.unlink(self._PID_FILE) + + def _write_pid(self, pid): + with open(self._PID_FILE, "w") as _pid: + _pid.write(f"{pid}") diff --git a/user_config/bin/ b/user_config/bin/ new file mode 100755 index 0000000..7a3e523 --- /dev/null +++ b/user_config/bin/ @@ -0,0 +1,29 @@ +#!/bin/bash + +# . CONFIG.sh + +# set -o xtrace ## To debug scripts +# set -o errexit ## To exit on error +# set -o errunset ## To exit if a variable is referenced but not set + + +function main() { + call_path=`pwd` + path="" + + if [[ ! "${1::1}" == /* ]]; then + path="${call_path}/${1}" + else + path="${1}" + fi + + # NOTE: Remove if you want to pass file(s) besides directories... + if [ ! -d "${path}" ]; then + echo ": Path given not a directory..." + exit 1 + fi + + cd "/opt/" + python /opt/.zip "$@" +} +main "$@"; diff --git a/user_config/usr/applications/.desktop b/user_config/usr/applications/.desktop new file mode 100755 index 0000000..d459bfb --- /dev/null +++ b/user_config/usr/applications/.desktop @@ -0,0 +1,11 @@ +[Desktop Entry] +Name= +GenericName= +Comment= +Exec=/bin/ %F +Icon=/usr/share//icons/.png +Type=Application +StartupNotify=true +Categories=System;FileTools;Utility;Core;GTK;FileManager; +MimeType= +Terminal=false diff --git a/user_config/usr/share/app_name/Main_Window.glade b/user_config/usr/share/app_name/Main_Window.glade new file mode 100644 index 0000000..c1a1964 --- /dev/null +++ b/user_config/usr/share/app_name/Main_Window.glade @@ -0,0 +1,28 @@ + + + + + + True + False + vertical + + + True + False + Loaded Me From Glade! + + + False + True + 0 + + + + + + + + + + diff --git a/user_config/usr/share/app_name/icons/app_name-64x64.png b/user_config/usr/share/app_name/icons/app_name-64x64.png new file mode 100644 index 0000000000000000000000000000000000000000..6105709cd12abc8d75074fa12ca5fe76b856f13f GIT binary patch literal 11833 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 z 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 literal 0 HcmV?d00001 diff --git a/user_config/usr/share/app_name/icons/audio.png b/user_config/usr/share/app_name/icons/audio.png new file mode 100644 index 0000000000000000000000000000000000000000..c0101346b611e7495861f4efe2c511f76b51e5e7 GIT binary patch literal 1544 zcmZuxdpOg382_1#wYlcDP%Wj4+h|9w2Q!nE80M04nOQb$)AnPKVADonltl zL5HREOw8q+D5;PxatTMONfadx#+mciInQ&x&-;Gg=Y2n)_ws$7_xa|L{Pt@ij1d3; zXcB$A0+lv;UEylVd;BubQE8xDPa+wvJbZX;uF~I-6K5kW&<%wn zj+uR`M&*(DT~$eYas}1jLP%A>r5w}z6ZPsB9f^l3j7`ITF2BQLe)^b{n?>IuoIfcm zEm5SuXS-zxN4p=-(6<8jY&HIo<9Mj%<4;>2mRqb2g_zm>W|aVtCPNHgroh!(N`nK_ zQ<~#9w=68{I*@LlaoG{u7Y6ps8f2joYdbHGQO&k>d})pwX)Z^;Ky)gLfW%p(zS;|S zhq0bZqG5|MOKeB2ftAYB62Xfmt(YKfk!{`B;!kpKLB*r1)t#q5ui%^%MzJmM;M%13 zk}Qd+%b=65%lY8%(Y2h~IDw16)&P$VXgnJJI3Cag^}HM0Ic#M`(VmLA1Cfn;y7SWC z?3N-Vj_#s!&k${bt9F3_rW<;B;VS&EXZ8oj526(CF_?pEUw@7qW^0`d)42!9rKq&u z1Y*JfJF85Tp@#+%o%647;s;2GXL-;o=hc86t@f!4CIu_q@$IS5-Ags!P9W*3%CuQS z4|mm$qaG%0klZ{e;D%hU#Y{1mZ4}pru@!GB3tYwW^SaUTwT1_0?*AGEaVBJ5b3Ik6 ze)dAQPW0J|?IKONhRS`hh?e(cf+^_MxtTMm^tH%Bfsd|CEvv#lA#=P29wT3F#X?ao zfkhFyPfg@-mHTwON^C0b8)<7_Di8hFBCwIiQUN+w?8!ZAS__NX4(blQ{_}IrrKQ;5 z7CSQ|^vh(5B6T@`q=`D9%V2l5ZTWydwpL4@>(kDp!*b^tU$?kqPLwI;Rj19dWyh-F zB~s1Y`s+eGX3Awxm&{O+jEjX_)E+%OQzX>rZ|H`Ru_**Wx|df7&beK-x;0trxp*$z zZeu?Gy8Wk<@fH&EPHAPCZuAkK;W|71a&`X|8St00&W}Kkdh8GJjr6W>@!F?BS1D0SAL zxZ;T3&N)bu{|c(QglMKWcIar;P{EA=x07mnrAy!G?UV4fsV_`~-JAB+n?!(bdXGO( z7iyVCIW3zU*jl_-7}~9GD_y(ifg#7+7a&M}23(10r0G)fyU5@#BsY%n7xv~;)ioT1 zu^9$v*!6(K|1)hd)X2ED)qw6VK=PVLE(Uj{i?k=xTnbJu;liYBC?EEVrD$%N(6GyU z%Fm@y_BvJQ*^kx!eUOjLzqRdl3OS?e55>5vEYC7$jhM!2S~>pOZKs}&5eShx;A6D@ zyLbP$j&#@}>FsXB;d4F}2O3c|nYZTZqfS#p?gxyVxAC@&7Vpa#^mUr04nA8b32D39 z!7VLJWB2(IXRl54?~Jk(DtwKKdSQ==p%L@NNS7w*_l5c|k73`|Fb||N=Ss%qr|hKp zFcNPwoI@=KZ0n!Q419iA7#B6nT5v0>`HfkgGTQ5`MsO>O$XbkVT!UHdTL6(U;Cknq{Q{mCL=3J`#dGHam+6_rCl di=8|}I5;?NKlFb92xL>4nJ zNUsNB#yF{oGC)De64!{5;QX|b^2DN4hVt@qz0ADq;^f4FRK5J7^x5xhq=1UVK#D># zOL9^f0)R3_3ZBXNc?uyJsky1DHrHsBf%ipdZ&9wFhW=V}MVHE09J8Z@~aA5*-~K z5fM>PP>_?8^XAPPi0p+67cO4Bc=_^WAotm`XF&4#^XCu}$awMM#mt#A=gyrwZ{EE5 z^XD&EuwdP~bsINs+_GiMwQJYz-@pIh!GlMS9=(438e*XO^6L^n`(#Rj{DK+SIFyvN zwDk>)J-vfMH*MLv|M1}tA3uHm{N?Lc&6p-z1_s79PZ!6KjC*fqlC<5TCeqS|*mRL?Kgc7(I8Vi=8|}I5;?NKlFb92xL>4nJ z$hLzpWB=2SsX#%=64!{5;QX|b^2DN4hVt@qz0ADq;^f4FRK5J7^x5xhq=1UVK#D># zOL9^f0)R3_3ZBXNc?uyJsky1DHrHsBfZYpno_di4|!2nE;;ZdJgpSz-K{;CN})=gZxe$uiHlb3Cnx_r~r6&t6n*feeBrs*p;&sep2 z#_G*8S8tiQdMnTtp!q-(xF)ho0G+E>666=mz{teP#m&ttEFvl4>6lif#XQ z8W13Ilv$zc>xRv19^Jh6-?ox*^G&|HnMr59#~t{-#It^DV2glL{i@!-kE4TcEV%OT z-p;}>w+z1?PA#6E70US!LfC%He;CD4G5_F<15KQ|YZz6wZP-1z`D{=_^8Ki6{avaJ zN7k*_@#bs#uBW^^zIST;wfe&9^4sO*Om&4j>bpKNANjrI3)7R|Q=T#KpZwhZ_*dum zPKyse-tD=U{igWAzqi#}eLQv9Y-+XEJ!hQx&W=4!!(c)y8wWhvU6w0CUnUvw{_K};>3gl1wceg9u(=*FzrTHMS*!j2>yL7`K8m_0?z;72 ikl~}S#Zrnb|3dd~^!AY~RX+CuWU8mDpUXO@geCx;cxYb$ literal 0 HcmV?d00001 diff --git a/user_config/usr/share/app_name/icons/doc.png b/user_config/usr/share/app_name/icons/doc.png new file mode 100644 index 0000000000000000000000000000000000000000..f8388267bc53ad5b95537b2977873701ac3de87b GIT binary patch literal 702 zcmeAS@N?(olHy`uVBq!ia0vp^2_VeD3?#3*wSy#>i=8|}I5;?NKlFb92xL>4nJ zNUsNB#yF{oGC)De64!{5;QX|b^2DN4hVt@qz0ADq;^f4FRK5J7^x5xhq=1U#L5e~$ zOL9^f0)R3_3ZBXNc?uyJskx~NA*s0qIf*5ykA0+kAalscA{WaJky1SjSyc%+tR zmXzFY>2w2127x4<^9w4AGSf3k7@VCI97{@yGLuS6GV}9vgEN3maLmcfPF2V#DJihh z*H11=O)SYQOHIzt&CSm%2DwN-Co?%UuQ;_>KdDl;I8onN&p zZ_9Puk?XiC-}6{u%6r8rAArhKrhnG%zo$Rxf&SbtZY#d}uKt>}<$cc94;{z8cOCoQ zef;}`Q$J^&|26ykuVq(%{r~^}l(nx4&>f;BL4LsuGV1!hQ>M<92A` za$u2V;P7(L&tTlTfNe{YTmTot0$~9MRfh(*0}QPUOht^WN18--M73=5e-P5pBywZE zqa&Bf?#D-!zU*O~{q@o;^8-1PL-!t-%^{%RaKQdUf!l(-hV)bR3I~jz$_qT0S@&69 z;D^cqV^xO-=8c(K|8@#XgfTm*UyupEDR0WO-Js**PYaPZ#^2g)85_AZEX$o=90q!r N!PC{xWt~$(69DZ(DkcB` literal 0 HcmV?d00001 diff --git a/user_config/usr/share/app_name/icons/image.png b/user_config/usr/share/app_name/icons/image.png new file mode 100644 index 0000000000000000000000000000000000000000..46f1ae6db661c4c331704cf0c47134c5fc7673dc GIT binary patch literal 6591 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 literal 0 HcmV?d00001 diff --git a/user_config/usr/share/app_name/icons/pdf.png b/user_config/usr/share/app_name/icons/pdf.png new file mode 100644 index 0000000000000000000000000000000000000000..9f40122a8e9ef281901e085651fa66de960cae4c GIT binary patch literal 925 zcmeAS@N?(olHy`uVBq!ia0vp^2_VeD3?#3*wSy#>i=8|}I5;?NKlFb92xL>4nJ zNUsNB#yF{oGC)De64!{5;QX|b^2DN4hVt@qz0ADq;^f4FRK5J7^x5xhq=1U#L5e~$ zOL9^f0)R3_3ZBXNc?uyJskx~NA*s0qIf*5ykA0+kAalscA{WaJky1SjSyc%+tR zmXzFY>2w2127x4<^9w4AGSf3k7@VCI97{@yGLuS6GV}9vgEN3maLmcfPF2V#DJihh z*H11=O)SYQOHIzt&CSm%2DwN-Co?%UuQ;_>KdDl;I8onN&pK?PTIAN%F-q_%-x$%8-V~{Ru^Jlh}&z$X_xi~y`b$XGV{4yf+ zWn?H&`^%{CSBbH&a#P=y6~8Sj`Mhk&=VePjFJJm)Mi|9-EZE1`1tA5moJqLU6Kq8j5VGvjv*QM-d>CJKja|7`e0Z0qDT7{ z@Ue=x9@zCTit+dV|C5)xEuOis`2EaGr$@H>bMLhORy~vHEa0IcWLx}nu9@QL5C7Jh zX&z=3(1Zr%7`Gi@ z+rcECz{PMtSfD}Gfx-O%LmLBA2_x$XCeaErj?Z?Dt0hEM9Jpw!5zzSR;LT>oh)-;D z-n^G8s(8a2u>7j+ zJjt8L#OQU^+W%$ol~c1VVm|%2De->yIiSp{$#TD@bqZhb;MWIIABs=S_AyQP;aJC9 z@7=`^``2qPQ>12fE92L^Z&7o_S!&dSSYtQ+%hYC)a9y}J+~C8l_ggjg7FAu;*!ziN zM)gzP8CSILH(b-+-*8WRe#6G_PuBw(7%L7eyZw(>d&4WXDQgbA*>(Eg)|m(N)`VR6 iI#nofzso27&zyp}+m6{Mw{HSQ6oaR$pUXO@geCx$l#&Sm literal 0 HcmV?d00001 diff --git a/user_config/usr/share/app_name/icons/presentation.png b/user_config/usr/share/app_name/icons/presentation.png new file mode 100644 index 0000000000000000000000000000000000000000..3a339af593f4932996667370db88dbdc050f86b2 GIT binary patch literal 882 zcmeAS@N?(olHy`uVBq!ia0vp^2_VeD3?#3*wSy#>i=8|}I5;?NKlFb92xL>4nJ zNUsNB#yF{oGC)De64!{5;QX|b^2DN4hVt@qz0ADq;^f4FRK5J7^x5xhq=1U#L5e~$ zOL9^f0)R3_3ZBXNc?uyJskx~NA*s0qIf*5ykA0+kAalscA{WaJky1SjSyc%+tR zmXzFY>2w2127x4<^9w4AGSf3k7@VCI97{@yGLuS6GV}9vgEN3maLmcfPF2V#DJihh z*H11=O)SYQOHIzt&CSm%2DwN-Co?%UuQ;_>KdDl;I8onN&pG({c6t+>by80{rP(O=NlPcPs@Hg1J-h0;pch9pXZf+o>%^PQTx|5 zr(f5ce_eC=b=?(Y$m7;ukK2AdZvXSF_s@$Ne_qZ6+WY6_>_4yO{&_X;&#U=B_xydm z2$g7u zy(C%^MBZ?E3;YYq@; zP29q_Hf(L_y2CGRR%D2_ugaMC>EHP$zLTdlCB8p;vvcF`{ZEo=ISURHn)rH$X~^?& zh(7%Ls^Ln8EX%38Wp@R3xwkT3+GD7vwS`yEq18%~fz_G)&hCqCIt-jT41yI53I>e( z4zS)}l77Hd)1b+~;P1dNje${yky(O?;{vOQ0(Zy*GuMdCoH08VIIx~u=h(<~#qWH6 zP>XN&fu|<}v#v1|hgwf#t@C7L6$x-?{LlGi@A>yXrfLN8E%<5_DY1cji=7a2S>tsN zu^0ZA7`pjycDFR@XDUo!JN7Z%Qf#;D<(k(Al4T^K>V2yp{_(l7vHrrm=jk?$lke2b zU%SUt#jfn^@|Uq(d)qEN-}U)cZ)+Sh vg(L2s-MoMEqZICF(UN^ZN^i1n34LRJ(>cXB_UJWGf@bh^^>bP0l+XkK!91hU literal 0 HcmV?d00001 diff --git a/user_config/usr/share/app_name/icons/spreadsheet.png b/user_config/usr/share/app_name/icons/spreadsheet.png new file mode 100644 index 0000000000000000000000000000000000000000..710efa631bbe46a69e7d43808c675b0f5c2411c0 GIT binary patch literal 707 zcmeAS@N?(olHy`uVBq!ia0vp^2_VeD3?#3*wSy#>i=8|}I5;?NKlFb92xL>4nJ zNUsNB#yF{oGC)De64!{5;QX|b^2DN4hVt@qz0ADq;^f4FRK5J7^x5xhq=1U#L5e~$ zOL9^f0)R3_3ZBXNc?uyJskx~NA*s0qIf*5ykA0+kAalscA{WaJky1SjSyc%+tR zmXzFY>2w2127x4<^9w4AGSf3k7@VCI97{@yGLuS6GV}9vgEN3maLmcfPF2V#DJihh z*H11=O)SYQOHIzt&CSm%2DwN-Co?%UuQ;_>KdDl;I8onN&pjHh&2juQ60FprD3nqb#g8ju=dvf#l z7rV~$aGeiCp6-jiz1R4Auk{DY`fUgbSP~q(B0PLcbk?3cpyJje?d?aq=3id8;PRq{ zmlrL)wtVfa_3LhJ*nV&4|NsBZl4mjk-62{MbP0l+XkKZ6g@< literal 0 HcmV?d00001 diff --git a/user_config/usr/share/app_name/icons/text.png b/user_config/usr/share/app_name/icons/text.png new file mode 100644 index 0000000000000000000000000000000000000000..2546fcd90b78ab5752f74234520af202a6c3987b GIT binary patch literal 798 zcmXAlYe-XJ7{}kuB}=C`tC3Uis2C#YEF(%oowrN5E?>zZM=u=!!)$Hk)mC9(O>wRa ztp}7FMumD>MN&vAS7Q~pfuQN{Z5`z>l!S*Rq_&wNlqwpPlwd-drieN{O^})_sR}Fz z8;E)wQ_-|GPasfGxSS>$aRsSXlNw#vk)VN4;2IsS6Vx?l>Ewdk>>NQ&YxNMQKNTO7 zl|i&xt#-TJ@AuEm&3V0Ehr zKmx%31Q;lRal74+_xJaM_|(*t&1RdPo}QVRnVp@TpPvUFFc5()%gf6EgXYT0%IfMW z7=Vpn07O6&L}2y7b9YXF(PUauDMg&vSYE>31A3#Wwe5Px?T3%Y#>cG-&Ly`u5Dfiv z4d-1#h`|??3T3JV|KwQ-Q^;v|mUFqm$Q!9Hd?=PZ8S}+wB(iH?XMS864LScrkDYpO zq(^b9EU(~AbKi*BvGM%Z;IrkV9%D!xcquds+dsF6t-bHn;)u?m3SshkMqElKD#~Ft zzKiPIl3TmOXR1P|+k|#8n7f&gJ6UlP(HXtG0n2bYC&ctdZXd8H6DQQ7=*u#$Gc`@j zOG)MYU~KvaIr^iozD2e@aiyOuz+~qGBf=|9EOs1rC%K82rd64gp9(Qc?ox7`qifS$ zhy@>^@%xDRdtjr6wV$w*vv`E1m^CWO4=K1F!8X=g-_0UrwK;PvXzd%yk7wArTRwcf nSXpJ**OfNuzE@@2Gn)FB={Hgt{G?7Rd?*r?RhF8IYp?zTm=%Df literal 0 HcmV?d00001 diff --git a/user_config/usr/share/app_name/icons/trash.png b/user_config/usr/share/app_name/icons/trash.png new file mode 100644 index 0000000000000000000000000000000000000000..c6514b98b5644a1398e5b94566627683bdf8313c GIT binary patch literal 989 zcmV<310wv1P)15yzTLCe34-$-L*zeV%iVi<#7%{pXzDkMHky2mk=z;1Ymqjw*`_ z;l=cX!@yxS)3eMo)!7q(s1S;8XDeoIfk&q@7uoI?s zN^{=g#zud^U7~af3UN1l@tmQLOr|QHWPuroi5&@B4xE5LwSSN~G+$j==zSl}UMNQg zyH_50>t(Oi+-x&5w89uZw-ptSj&|nuPG2fiPCt#GwwmD#Jm6oxx$^wCcxirh-cQ9a ziluU6K|Pn5D~^E<4p7JT?N5^#IMVgKv(20OG$aWqB{-E1 z9oKKm#x_8Yf!EY3G??PhH00od3`|8Cr#dh|?Xc^Z-nF9>;EQ2fnv!5>XX9e5(~w%Q zWxxzw@&_hiR$9Lcoc|vHx!)lO6-mr}?nq6T47i&p1j1BE6+d+ySi293cx+=BS^bPd z2pc)RW6($#nyaDBQ#bUD)T*xo(~>w=@g&O4P0907%sO^H(WGl-(aW~-b3x1wa&{7m zuWn2M!9yrPfv)`{h@?zgx|KUDMpnH#&O}b58kogEan(fp3IGm{0yF@Eai?E1TUpQI zP%w=Iic?7KIfYR^3~mA204Ox%tPdgo9_IQMM*@lfDHI}T5|U27TT;IPe*mD6XwTM& zhIg`@LxX@qgMnb0tVSaItJ7O4fL$Dd0pPc<&*3~0q)-r0(BKH6aSoNuc<)UB0GrMp z6mp=g$)0LI{yHl_Lcst-1y5iV&y7F1{N=AVPXJ(u4pd6_>+}0v$EYsS1=O&N8hVrM zpZ|RC94JwwF%&23;_5K`+J-nN-|HR00000 LNkvXXu0mjfZ-lz6 literal 0 HcmV?d00001 diff --git a/user_config/usr/share/app_name/icons/video.png b/user_config/usr/share/app_name/icons/video.png new file mode 100644 index 0000000000000000000000000000000000000000..55afa98662c7439702c4391be32151b59c65e253 GIT binary patch literal 1313 zcmeAS@N?(olHy`uVBq!ia0vp^2_VeD1|%QND7OGoEX7WqAsj$Z!;#Vf4nJ zNUsNB#yF{oGC)De64!{5;QX|b^2DN4hVt@qz0ADq;^f4FRK5J7^x5xhq=1UVK#D># zOL9^f0)R3_3ZBXNc?uyJsky1DHrHsBf%ipdZ&9wFl@+Mo$;Vkcv5P@A_uQq{heETG?y0yzC9fraSuz>xc-iKB^S-C2j9}#|+2Trc2JzJRTnfTzEQIH^v=t-uh~( zxc^nT;G^AFyj-F_E#k~I^^GcclIec6N$|KDEZ^HL2yRXD%)^JLrNU0ZK4B(tA;`e?y7+bL3Cv<0)SasI_CAaj~N#c(YL7*x>s=RUEzB;@PrBh& zH)D%og8`esF@{4D4id~9$qb1+3OxwHP0QHrcBOO2*;w_|95lANuJ3MPXxI5(O|0kK zRl|QgH_Ue({_&96Vc&zq|1bC+7nk<1Yuu@Ae>qY6-K)v7Yqj^V-D!HvaJ2dMZM$~H zu!p<&;w*k~%)4!W;alV}{X=v0Uhk~<**mx5&CKevXN-+f=bm`FyWqv#SP7|{IXP;~ zcdqPSDZPH*cNRIBH>Ot885zEOeQr=yWB#r(Ve!YC*VuRDXUi=Ow$PzK?rCL+Fg2guB&_nRD$dv!BcjdVIbiOV!A>s5L(B z_M7webFwb`{Y$Vp;Qn~>iWvW|`+K5R742;lemwcu^H&o81xx0 uulP@kQGh{%aR*z&{2E6WF!;j1pYh0Ho3#3@qwc_>hQZU-&t;ucLK6Tg{6(q& literal 0 HcmV?d00001 diff --git a/user_config/usr/share/app_name/icons/web.png b/user_config/usr/share/app_name/icons/web.png new file mode 100644 index 0000000000000000000000000000000000000000..17017ce3f5c04869fd808d91732939ea9b32b36d GIT binary patch literal 1845 zcmX9-30PBC7JeZt0R&N&im4Vm5LuK(q#_nd0tCVUMu-({*@BToAxV=L*+e!GkXn@r ziUOk+5JanpgIGYI)*&h-ERqnyl7#n?m%Ok@b?nd&oyW}mzH{$?&iTLZo^$Vi%IPuT zRu-Er006L}MTEv;XY!g6@Yp_1EnQ3Cg%lctKp-eo`<0k$&W|`O1OVdwHNz!tzVs;; zbOgiV!8qPAFf&EK0x~l*JvrPH!qgN#%abQayT0({W{mXN8i~OH(^&u=%LtrksXVR| zgU!ldIWbrn{PYx%HMdbK!l)b8sALhy<_Unflnkc`Rwf4oXU~*Vv1II8GK9y^7I4zo zAP^GbLTopXZa#0EirfR|UQfRzGrPO?&Y85umTaIGS*bWSRZ zD`W}1nAtmpDPF#w-d>5tN4f#P=q^2q5r*9|K0dBcDCXzqr>3S*6jdsf7@nJ(TU=ax z^X84gV89~F%gakkOIT!KVF5u9wOXxGsW2B?7{Cbs2N(x)F^*QN#qdzr=R?%L4N;wk z!d-?UTqF@B32nP1(p3`aCW-QpM0-eLeI#+d!*tK#Sf62r@5n*Fk;8jOjs%P)QO1%f zW6aR8RO;B#@Yly8$2rmC=?Ab4>^;QlZta9Ma9XfOQ)x*il%Eyr)$clua!?v zPtV-AI9ppWTYp~JP^G+GgLR~8tyA6mhwA<qq?n0{jdpZeC|;T_Bc>935wYc z?RSIdZcyw_h~Wtx^oEXn0e#~Sb>4-#9zZ=0q23Ot{|WT03#PlnhkW70eQ_glMx^$_R@Y<)VrQXIbz5PntJ0g8Rbn*LUbxsP8jj*_-Z(cX zN{bSF%odkOt+)PVn?cJf{v^KG_!od*Z`y6_gfo9@lyz1e6<-f@N(DIgw^V+X{8VBDgh-5c#-s8%>=Ds{ zKfZ$B2p)baC-hl5^DPUkA4$M1z~aT=lsHFr2wwAQ^^hG?0?{1_9}F`e&AR*C-`<=x z*RYSBq9v~+{b;!tNT=fS*ot>s1gZ^;zlQsQ*$T>i*<;Y?y|^T*Id-^@z$QlD35-#i zJ2sI;MpjWp9kw)4zj?RIGhcdL7=G-=JU=#Yy(dm>A@;T}0CztyE+AaJ=M8AMMO$_| z7Id+bi9q0dam5HecC>c_tpmQK;`iVX>Wcn}ut+z3R7*7gNk8~2Q z1}q%HZJIat|JlfU$d-TD#L3I&q0rktK6eLt#iF1#&8Ilzqp1VwcF)ZjcT=&PXup+d zrtYX6^88blp$1-*%0m?Q_y0cl4qR{hAfh?`YOtxbIN6Bo?^I^~=S_`RJz#u_xuM8K zT55i|B_nE=rK5wevMuH?>Bb+{SGUyyyt<;S|E!pu1J}QO|8A5sa;v2BD^p^p&yHcv RE^NR6T3Afz&y?h%{{oe`z-j;h literal 0 HcmV?d00001 diff --git a/user_config/usr/share/app_name/key-bindings.json b/user_config/usr/share/app_name/key-bindings.json new file mode 100644 index 0000000..a172eea --- /dev/null +++ b/user_config/usr/share/app_name/key-bindings.json @@ -0,0 +1,23 @@ +{ + "keybindings": { + "help" : "F1", + "rename_files" : ["F2", "e"], + "open_terminal" : "F4", + "refresh_tab" : ["F5", "r"], + "delete_files" : "Delete", + "tggl_top_main_menubar" : "Alt_L", + "trash_files" : "t", + "tear_down" : "q", + "go_up" : "Up", + "go_home" : "slash", + "grab_focus_path_entry" : "l", + "open_files" : "o", + "show_hide_hidden_files" : "h", + "keyboard_create_tab" : "t", + "keyboard_close_tab" : "w", + "keyboard_copy_files" : "c", + "keyboard_cut_files" : "x", + "paste_files" : "v", + "show_new_file_menu" : "n" + } +} diff --git a/user_config/usr/share/app_name/settings.json b/user_config/usr/share/app_name/settings.json new file mode 100644 index 0000000..f75af4f --- /dev/null +++ b/user_config/usr/share/app_name/settings.json @@ -0,0 +1,40 @@ +{ + "config": { + "base_of_home": "", + "hide_hidden_files": "true", + "thumbnailer_path": "ffmpegthumbnailer", + "go_past_home": "true", + "lock_folder": "false", + "locked_folders": "venv::::flasks", + "mplayer_options": "-quiet -really-quiet -xy 1600 -geometry 50%:50%", + "music_app": "/opt/deadbeef/bin/deadbeef", + "media_app": "mpv", + "image_app": "mirage", + "office_app": "libreoffice", + "pdf_app": "evince", + "text_app": "leafpad", + "file_manager_app": "solarfm", + "terminal_app": "terminator", + "remux_folder_max_disk_usage": "8589934592" + }, + "filters": { + "meshs": [".blend", ".dae", ".fbx", ".gltf", ".obj", ".stl"], + "code": [".cpp", ".css", ".c", ".go", ".html", ".htm", ".java", ".js", ".json", ".lua", ".md", ".py", ".rs", ".toml", ".xml", ".pom"], + "videos": [".mkv", ".mp4", ".webm", ".avi", ".mov", ".m4v", ".mpg", ".mpeg", ".wmv", ".flv"], + "office": [".doc", ".docx", ".xls", ".xlsx", ".xlt", ".xltx", ".xlm", ".ppt", ".pptx", ".pps", ".ppsx", ".odt", ".rtf"], + "images": [".png", ".jpg", ".jpeg", ".gif", ".ico", ".tga", ".webp"], + "text": [".txt", ".text", ".sh", ".cfg", ".conf", ".log"], + "music": [".psf", ".mp3", ".ogg", ".flac", ".m4a"], + "pdf": [".pdf"] + + }, + "theming":{ + "success_color":"#88cc27", + "warning_color":"#ffa800", + "error_color":"#ff0000" + }, + "debugging": { + "ch_log_lvl": 10, + "fh_log_lvl": 20 + } +} diff --git a/user_config/usr/share/app_name/stylesheet.css b/user_config/usr/share/app_name/stylesheet.css new file mode 100644 index 0000000..c0383f6 --- /dev/null +++ b/user_config/usr/share/app_name/stylesheet.css @@ -0,0 +1,86 @@ +/* Set fm to have transparent window */ +box, +iconview, +notebook, +paned, +stack, +scrolledwindow, +treeview.view, +.content-view, +.view { + background: rgba(19, 21, 25, 0.14); + color: rgba(255, 255, 255, 1); +} + +notebook > header > tabs > tab:checked { + /* Neon Blue 00e8ff */ + background-color: rgba(0, 232, 255, 0.2); + /* Dark Bergundy */ + /* background-color: rgba(116, 0, 0, 0.25); */ + + color: rgba(255, 255, 255, 0.8); +} + +#message_view { + font: 16px "Monospace"; +} + +.view:selected, +.view:selected:hover { + box-shadow: inset 0 0 0 9999px rgba(21, 158, 167, 0.34); + color: rgba(255, 255, 255, 0.5); +} + +.alert-border { + border: 2px solid rgba(116, 0, 0, 0.64); +} + +.search-border { + border: 2px solid rgba(136, 204, 39, 1); +} + +.notebook-selected-focus { + /* Neon Blue 00e8ff border */ + border: 2px solid rgba(0, 232, 255, 0.34); + /* Dark Bergundy */ + /* border: 2px solid rgba(116, 0, 0, 0.64); */ +} + +.notebook-unselected-focus { + /* Neon Blue 00e8ff border */ + /* border: 2px solid rgba(0, 232, 255, 0.25); */ + /* Dark Bergundy */ + /* border: 2px solid rgba(116, 0, 0, 0.64); */ + /* Snow White */ + border: 2px solid rgba(255, 255, 255, 0.24); +} + + + + + +/* * { + background: rgba(0, 0, 0, 0.14); + color: rgba(255, 255, 255, 1); +} */ + +/* * selection { + background-color: rgba(116, 0, 0, 0.65); + color: rgba(255, 255, 255, 0.5); +} */ + +/* Rubberband coloring */ +/* .rubberband, +rubberband, +flowbox rubberband, +treeview.view rubberband, +.content-view rubberband, +.content-view .rubberband, +XfdesktopIconView.view .rubberband { + border: 1px solid #6c6c6c; + background-color: rgba(21, 158, 167, 0.57); +} + +XfdesktopIconView.view:active { + background-color: rgba(172, 102, 21, 1); +} */