blob: 4295d6c2617cfb71d447bacf9101ba4f7a6b9d88 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
#!/bin/bash
set -euo pipefail
flags_file="${XDG_CONFIG_HOME:-$HOME/.config}/code-flags.conf"
declare -a codeflags
if [[ -f "${flags_file}" ]]; then
mapfile -t < "${flags_file}" CODEMAPFILE
fi
for line in "${CODEMAPFILE[@]}"; do
if [[ ! "${line}" =~ ^[[:space:]]*#.* ]]; then
codeflags+=("${line}")
fi
done
name=electron
flags_file="${XDG_CONFIG_HOME:-$HOME/.config}/${name}-flags.conf"
declare -a electronflags
if [[ -f "${flags_file}" ]]; then
mapfile -t < "${flags_file}" ELECTRONMAPFILE
fi
for line in "${ELECTRONMAPFILE[@]}"; do
if [[ ! "${line}" =~ ^[[:space:]]*#.* ]]; then
electronflags+=("${line}")
fi
done
ELECTRON_RUN_AS_NODE=1 exec /usr/lib/${name}/electron /usr/lib/code/out/cli.js "${electronflags[@]}" /usr/lib/code/code.mjs "${codeflags[@]}" "$@"
|