mirror of
https://github.com/KDE/kde-linux.git
synced 2026-04-19 05:59:06 -04:00
10 lines
329 B
Bash
Executable File
10 lines
329 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
|
|
# SPDX-FileCopyrightText: 2026 Hadi Chokr <hadichokr@icloud.com>
|
|
|
|
if [[ ! -f ~/.local/share/flatpak/exports/share/applications/org.kde.kjar.desktop ]]; then
|
|
/usr/lib/kjar-install
|
|
fi
|
|
|
|
flatpak run org.kde.kjar java "$@"
|