mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2024-10-01 01:26:01 -04:00
15 lines
418 B
Plaintext
15 lines
418 B
Plaintext
|
#!/usr/bin/env bash
|
||
|
# This is the maintainence launcher for the snap, make necessary runtime environment changes to make the snap work here. You may also insert security confinement/deprecation/obsoletion notice of the snap here.
|
||
|
|
||
|
set \
|
||
|
-o errexit \
|
||
|
-o errtrace \
|
||
|
-o nounset \
|
||
|
-o pipefail
|
||
|
|
||
|
# gtk-common-themes support
|
||
|
export QT_QPA_PLATFORMTHEME=gtk3
|
||
|
|
||
|
# Finally run the next part of the command chain
|
||
|
exec "${@}"
|