File indexing completed on 2024-05-12 16:02:32

0001 #!/bin/bash
0002 # Launcher script for running the Krita AppImage inside of the Steam Linux Runtime.
0003 # Include alongside krita.appimage (probably in `content/linux/`) and 
0004 # configure Steamworks to use this as the default/primary launch option.
0005 
0006 # Prevent runtime environment or host system libraries from being used over AppImage packaged ones. 
0007 unset LD_LIBRARY_PATH
0008 
0009 # UTF-8 Locale support.
0010 LC_ALL=en_US.UTF-8
0011 
0012 # Prevents Auto-Updates.
0013 STARTED_BY_STEAM=1
0014 
0015 # Launch Krita.
0016 appdir=$(dirname "$0")
0017 $appdir/krita.appimage