vscodium-bin 1.105.17075-1

This commit is contained in:
2025-10-30 12:51:15 +03:00
parent 74e7111173
commit 757da12d89
5 changed files with 257 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
#!/bin/bash
XDG_CONFIG_HOME=${XDG_CONFIG_HOME:-~/.config}
# Allow users to override command-line options
if [[ -f $XDG_CONFIG_HOME/codium-flags.conf ]]; then
readarray lines <"$XDG_CONFIG_HOME/codium-flags.conf"
for line in "${lines[@]}"; do
if ! [[ "$line" =~ ^[[:space:]]*# ]]; then
CODE_USER_FLAGS+=($line)
fi
done
fi
# Launch
exec /opt/vscodium-bin/bin/codium "$@" "${CODE_USER_FLAGS[@]}"