Package Details: brave-nightly-bin 1.82.7-1

Git Clone URL: https://aur.archlinux.org/brave-nightly-bin.git (read-only, click to copy)
Package Base: brave-nightly-bin
Description: Web browser that blocks ads and trackers by default (nightly binary release).
Upstream URL: https://brave.com/download-nightly
Keywords: brave
Licenses: MPL2
Provides: brave-nightly-bin, brave-nightly-browser
Submitter: gregbunk
Maintainer: brave-prerelease
Last Packager: brave-prerelease
Votes: 36
Popularity: 1.60
First Submitted: 2019-03-28 14:18 (UTC)
Last Updated: 2025-06-20 15:12 (UTC)

Dependencies (9)

Required by (0)

Sources (3)

Pinned Comments

brave-prerelease commented on 2025-02-06 13:55 (UTC)

Latest Comments

« First ‹ Previous 1 2 3 4 5 6 7 8 Next › Last »

pmorales commented on 2021-09-09 16:25 (UTC)

@gregbunk Awesome! Thanks

gregbunk commented on 2021-09-09 16:01 (UTC)

Sure. Added. Thanks!

pmorales commented on 2021-09-09 15:03 (UTC)

Hi. Can you add custom flags support? Maybe like in brave-bin package (https://aur.archlinux.org/cgit/aur.git/tree/brave-bin.sh?h=brave-bin)

#!/usr/bin/env bash
XDG_CONFIG_HOME="${XDG_CONFIG_HOME:-$HOME/.config}"

# Allow users to override command-line options
USER_FLAGS_FILE="$XDG_CONFIG_HOME/brave-nightly-flags.conf"
if [[ -f $USER_FLAGS_FILE ]]; then
   USER_FLAGS="$(cat $USER_FLAGS_FILE | sed 's/#.*//')"
fi

exec /opt/brave.com/brave-nightly/brave-browser "$USER_FLAGS" "$BRAVE_FLAGS" "$FLAG" "$@"

gregbunk commented on 2021-02-03 20:36 (UTC)

Thanks - fixed.

sperg512 commented on 2021-02-03 20:29 (UTC)

why does this conflict with itself? it should conflict with brave-browser-nightly

<deleted-account> commented on 2020-11-15 12:37 (UTC)

I don't think it conflicts with brave-bin.

gregbunk commented on 2020-11-12 11:46 (UTC)

Agreed. Made it optional.

<deleted-account> commented on 2020-11-12 11:14 (UTC)

libgnome-keyring should be an optional dependency. People who don't use the GNOME keyring don't need this dependency at all.

oidualc commented on 2020-09-30 20:46 (UTC)

The issue I was mentioning some months ago where when clicking on the icon it generates a second icon to hold the windows (incorrect StartupWMClass) is back with this new version. I made a new patch to add back the StartupWMClass in the .desktop file, could you apply it? https://pastebin.com/dYYSn51d

kiankasad commented on 2020-09-23 00:44 (UTC) (edited on 2020-09-23 01:03 (UTC) by kiankasad)

The file /proc/sys/kernel/unprivileged_userns_clone is provided by a kernel patch that exists in Debian. On Arch Linux, the file should never exist. This means that even when user namespaces are enabled, Brave will run with the sandbox disabled (which is not good).

This can be fixed by removing the check for /proc/sys/kernel/unprivileged_userns_clone in brave-nightly-bin.sh

EDIT: I've applied this suggestion, as well as made the script work in POSIX-compliant shells (sh). It can be found here: https://files.kasad.com/brave-nightly-bin.sh