- Fork del repositorio
- Clonar el repositorio
- Actualizar la rama master
- Crear una rama
- Hacer los cambios
- Hacer un Pull Request
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff -Naur a/common/profile-cleaner.in b/common/profile-cleaner.in | |
--- a/common/profile-cleaner.in 2020-05-16 12:14:59.033740280 -0400 | |
+++ b/common/profile-cleaner.in 2020-05-16 12:19:33.217328995 -0400 | |
@@ -172,10 +172,10 @@ | |
case "$1" in | |
B|b) | |
- for name in BraveSoftware Brave-Browser; do | |
+ for name in Brave-Browser Brave-Browser-Dev Brave-Browser-Beta Brave-Browser-Nightly; do | |
export name |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff -Naur a/common/profile-cleaner.in b/common/profile-cleaner.in | |
--- a/common/profile-cleaner.in 2020-05-12 21:11:28.104357941 -0400 | |
+++ b/common/profile-cleaner.in 2020-05-12 21:52:44.818506786 -0400 | |
@@ -318,6 +318,14 @@ | |
do_dbbased | |
exit 0 | |
;; | |
+ V|v) | |
+ for name in vivaldi vivaldi-snapshot; do | |
+ export name |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Copyright 1999-2020 Gentoo Authors | |
# Distributed under the terms of the GNU General Public License v2 | |
EAPI=7 | |
inherit desktop flag-o-matic linux-info linux-mod multilib-minimal \ | |
nvidia-driver portability toolchain-funcs unpacker udev | |
DESCRIPTION="NVIDIA Accelerated Graphics Driver" | |
HOMEPAGE="https://www.nvidia.com/" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/sbin/openrc-run | |
# | |
ARCH=$(uname -m) | |
[[ $ARCH == "x86_64" ]] && SUFFIX="64" || SUFFIX="32" | |
pidfile="/var/run/prey-agent.pid" | |
command="/usr/lib${SUFFIX}/prey/bin/prey" | |
description="The Prey Agent Daemon" | |
start_stop_daemon_args="-b -n --pidfile ${pidfile}" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/sbin/openrc-run | |
depend() { | |
need localmount | |
need bootmisc | |
} | |
start() { | |
ebegin "Mounting chroot directories" | |
mount -o rbind /dev /mnt/dev > /dev/null & |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff -Naur a/kitty/main.py b/kitty/main.py | |
--- a/kitty/main.py 2019-10-11 14:47:31.246901676 -0300 | |
+++ b/kitty/main.py 2019-10-11 14:48:48.475187475 -0300 | |
@@ -296,6 +296,9 @@ | |
os.environ['PATH'] = os.pathsep.join(existing_paths) | |
args = sys.argv[1:] | |
+ # Escaping surrogate characters if available | |
+ _args = [a.encode('utf-8','surrogateescape').decode('utf-8') for a in args] | |
+ args = _args |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff -Naur a/kitty/main.py b/kitty/main.py | |
--- a/kitty/main.py 2019-10-10 00:12:43.425552669 -0300 | |
+++ b/kitty/main.py 2019-10-10 00:14:51.659220009 -0300 | |
@@ -296,6 +296,10 @@ | |
os.environ['PATH'] = os.pathsep.join(existing_paths) | |
args = sys.argv[1:] | |
+ _args = [] | |
+ for a in args: | |
+ _args.append(a.encode('utf-8','surrogateescape').decode('utf-8')) |
NewerOlder