Metadata-Version: 2.4
Name: jdSimpleAutostart
Version: 1.6
Summary: Edit autostart entries on Linux
Author-email: JakobDev <jakobdev@gmx.de>
License-Expression: GPL-3.0-only
Project-URL: Source, https://codeberg.org/JakobDev/jdFlatpakSnaphot
Project-URL: Issues, https://codeberg.org/JakobDev/jdFlatpakSnapshot/issues
Project-URL: Translate, https://translate.codeberg.org/projects/jdSimpleAutostart
Project-URL: Donation, https://ko-fi.com/jakobdev
Keywords: JakobDev,Linux,Freedesktop
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: End Users/Desktop
Classifier: Environment :: Other Environment
Classifier: Environment :: X11 Applications :: Qt
Classifier: Natural Language :: English
Classifier: Natural Language :: German
Classifier: Topic :: Software Development
Classifier: Topic :: Utilities
Classifier: Operating System :: POSIX
Classifier: Operating System :: POSIX :: BSD
Classifier: Operating System :: POSIX :: Linux
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: Implementation :: CPython
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: PyQt6
Requires-Dist: desktop-entry-lib
Dynamic: license-file

<h1 align="center">jdSimpleAutostart</h1>

<h3 align="center">Edit autostart entries on Linux</h3>

<p align="center">
    <img alt="jdSimpleAutostart" src="screenshots/en/MainWindow.webp"/>
</p>

jdSimpleAutostart allows you to manage the autostart entries of your Desktop according to the Freedesktop Specification.
It is made to work on all Desktop Environments, therefore it only supports the Basic Features.
Your Desktop Environment may have a Program that supports some custom features of your Desktop.

## Install

### Flatpak
You can get jdSimpleAutostart from [Flathub](https://flathub.org/apps/page.codeberg.JakobDev.jdSimpleAutostart)

### AUR
Arch Users can get jdSimpleAutostart from the [AUR](https://aur.archlinux.org/packages/jdsimpleautostart)

### pip
You can install jdSimpleAutostart from [PyPI](https://pypi.org/project/jdSimpleAutostart) using `pip`:
```shell
pip install jdSimpleAutostart
```
Using this Method, it will not include a Desktop Entry or any other Data file, so you need to run jdSimpleAutostart from the Command Line.
Use this only, when nothing else works.

### From source
This is only for experienced Users and someone, who wants to package jdSimpleAutostart for a Distro.
jdSimpleAutostartshould be installed as a Python package.
You can use `pip` or any other tool that can handle Python packages.
YOu need to have `lrelease` installed to build the Package.
After that, you should run `install-unix-datafiles.py` which wil install things like the Desktop Entry or the Icon in the correct place.
It defaults to `/usr`, but you can change it with the `--prefix` argument.
It also applies the translation to this files.
You need gettext installed to run `install-unix-datafiles.py`.

Here's a example of installing jdSimpleAutostart into `/usr/local`:
```shell
sudo pip install --prefix /usr/local .
sudo ./install-unix-datafiles.py --prefix /usr/local
```

## Translate
You can help translating jdSimpleAutostart on [Codeberg Translate](https://translate.codeberg.org/projects/jdSimpleAutostart)

## Develop
jdSimpleAutostartis written in Python and uses PyQt6 as GUI toolkit. You should have some experience in both.
You can run `jdSimpleAutostart.py`to start jdSimpleAutostart from source and test your local changes.
It ships with a few scripts in the tools directory that you need to develop.

#### CompileUI.py
This is the most important script. It will take all `.ui` files in `jdSimpleAutostart/ui` and compiles it to a Python class
and stores it in `jdSimpleAutostart/ui_compiled`. Without running this script first, you can't start jdSimpleAutostart.
You need to rerun it every time you changed or added a `.ui` file.

#### BuildTranslations.py
This script takes all `.ts` files and compiles it to `.qm` files.
The `.ts` files are containing the translation source and are being used during the translation process.
The `.qm` contains the compiled translation and are being used by the Program.
You need to compile a `.ts` file to a `.qm` file to see the translations in the Program.

#### UpdateTranslations.py
This regenerates the `.ts` files. You need to run it, when you changed something in the source code.
The `.ts` files are contains the line in the source, where the string to translate appears,
so make sure you run it even when you don't changed a translatable string, so the location is correct.

####  UpdateUnixDataTranslations.py
This regenerates the translation files in `deploy/translations`. these files contains the translations for the Desktop Entry and the AppStream File.
It uses gettext, as it is hard to translate this using Qt.
These files just exists to integrate the translation with Weblate, because Weblate can't translate the Desktop Entry and the AppStream file.
Make sure you run this when you edited one of these files.
You need to have gettext installed to use it.

## Credits
[Icon Source](https://icon-icons.com/icon/rocket-space-startup/96966)
