bazzite/system_files/desktop/kinoite/usr/bin/kde-ptyxis
2024-02-17 13:13:22 -08:00

12 lines
375 B
Bash
Executable File

#!/usr/bin/bash
# Shim to handle KDE only supporting -e
# https://bugs.kde.org/show_bug.cgi?id=459616
args=("${@//-e/--}")
# Dolphin integration requires --new-window to function properly
if [[ ! "${args[@]}" =~ "--" && ! "${args[@]}" =~ "-h" && ! "${args[@]}" =~ "-x" ]]; then
/usr/bin/ptyxis --new-window "${args[@]}"
else
/usr/bin/ptyxis "${args[@]}"
fi