diff options
-rw-r--r-- | brave/Makefile | 14 | ||||
-rwxr-xr-x | brave/brave | 3 |
2 files changed, 17 insertions, 0 deletions
diff --git a/brave/Makefile b/brave/Makefile new file mode 100644 index 0000000..dc5f0c2 --- /dev/null +++ b/brave/Makefile @@ -0,0 +1,14 @@ +.POSIX: + +XINITRC_ORDER = 20 + +install: + ../check-installed-shebang brave + mkdir -p -- ~/.local/bin + test ! -e ~/.local/bin/brave || test -L ~/.local/bin/brave + ln -sf -- ~/.dotfiles/brave/brave ~/.local/bin/brave + +uninstall: + +! ../check-installed brave + +! ../check-installed brave-bin + -unlink -- ~/.local/bin/brave diff --git a/brave/brave b/brave/brave new file mode 100755 index 0000000..9971967 --- /dev/null +++ b/brave/brave @@ -0,0 +1,3 @@ +#!/bin/dash + +exec /usr/bin/brave --password-store=none "$@" |