mirror of
https://github.com/terrapkg/packages.git
synced 2026-06-11 14:10:42 +00:00
5e6c1afc14
* sign
* Add: Picotool
* Remove rpi-utils folder
* Add: Legcord-nightly and organize legcord packages into folder
* Remove picotools folder
(cherry picked from commit 3fb3148829)
Co-authored-by: Owen Zimmerman <123591347+Owen-sz@users.noreply.github.com>
14 lines
335 B
Bash
14 lines
335 B
Bash
#!/bin/sh
|
|
electron=/usr/bin/electron
|
|
|
|
CONFIG=${XDG_CONFIG_HOME:-~/.config}
|
|
FLAGS="$CONFIG/armcord-flags.conf"
|
|
|
|
# Allow users to override command-line options
|
|
if [ -f "$FLAGS" ]; then
|
|
USER_FLAGS="$(cat "$FLAGS")"
|
|
fi
|
|
|
|
# shellcheck disable=SC2086 # USER_FLAGS has to be unquoted
|
|
"$electron" /usr/share/armcord/app.asar $USER_FLAGS "$@"
|