mirror of
https://github.com/archlinux/aur.git
synced 2025-12-10 08:05:42 +01:00
11 lines
336 B
Bash
Executable file
11 lines
336 B
Bash
Executable file
#!/bin/bash
|
|
|
|
XDG_CONFIG_HOME=${XDG_CONFIG_HOME:-~/.config}
|
|
|
|
# Allow users to override command-line options
|
|
if [[ -f $XDG_CONFIG_HOME/cursor-flags.conf ]]; then
|
|
CURSOR_USER_FLAGS="$(sed 's/#.*//' $XDG_CONFIG_HOME/cursor-flags.conf | tr '\n' ' ')"
|
|
fi
|
|
|
|
# Launch
|
|
exec /opt/cursor-beta-bin/cursor-beta-bin.AppImage "$@" $CURSOR_USER_FLAGS
|