From 33f9dbfbf047e7eab4853486bb1495f73d2ce50b Mon Sep 17 00:00:00 2001 From: Donovan Glover Date: Fri, 31 Aug 2018 15:03:50 -0400 Subject: [PATCH] Change waterfox to firefox As much as I enjoyed using Waterfox, the update to Firefox (and its developer tools) is pretty nice. Since many add-ons now support this new version of Firefox, I think it's now time to make the switch. --- aliases/.aliases.sh | 2 +- fish/.config/fish/config.fish | 2 +- git/.gitconfig | 2 +- xresources/.Xresources | 2 +- zsh/.zshrc | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/aliases/.aliases.sh b/aliases/.aliases.sh index 3ff9fc25..d4217d86 100644 --- a/aliases/.aliases.sh +++ b/aliases/.aliases.sh @@ -95,7 +95,7 @@ alias f="launch feh --auto-zoom" # Easy image viewing with f alias z="launch zathura" # Easy document browsing with z alias m="launch mpv" # Easy media playing with m alias lnox="launch inox" # Launch inox separate from the terminal -alias lfox="launch waterfox" # Launch waterfox separate from the terminal +alias lfox="launch firefox" # Launch firefox separate from the terminal #################################################################### # Fun aliases that don't serve any specific purpose diff --git a/fish/.config/fish/config.fish b/fish/.config/fish/config.fish index 55b10a89..6a8444d5 100644 --- a/fish/.config/fish/config.fish +++ b/fish/.config/fish/config.fish @@ -7,7 +7,7 @@ set -U fish_user_paths export VISUAL="nvim" export EDITOR="nvim" -export BROWSER="waterfox" +export BROWSER="firefox" export FZF_DEFAULT_COMMAND='rg --files --no-ignore --hidden --follow --glob "!.git/*"' export GPG_TTY=(tty) diff --git a/git/.gitconfig b/git/.gitconfig index 5f501de4..ad1a6ad7 100644 --- a/git/.gitconfig +++ b/git/.gitconfig @@ -12,7 +12,7 @@ excludesfile = ~/.gitignore [web] - browser = waterfox + browser = firefox [push] default = simple diff --git a/xresources/.Xresources b/xresources/.Xresources index dc4a86c2..17884589 100644 --- a/xresources/.Xresources +++ b/xresources/.Xresources @@ -32,7 +32,7 @@ URxvt.pointerBlank: true ! https://wiki.gentoo.org/wiki/Rxvt-unicode URxvt.perl-ext-common: default,selection-to-clipboard,pasta,matcher,keyboard-select URxvt.keysym.M-u: perl:url-select:select_next -URxvt.url-launcher: /usr/bin/waterfox +URxvt.url-launcher: /usr/bin/firefox URxvt.underlineURLs: true URxvt.matcher.button: 1 URxvt.keysym.M-Escape:perl:keyboard-select:activate diff --git a/zsh/.zshrc b/zsh/.zshrc index a7c4e941..50946eb4 100644 --- a/zsh/.zshrc +++ b/zsh/.zshrc @@ -3,7 +3,7 @@ export VISUAL="nvim" export EDITOR="nvim" -export BROWSER="waterfox" +export BROWSER="firefox" # Use rg instead of ag / ack / grep for fzf (much faster) export FZF_DEFAULT_COMMAND='rg --files --no-ignore --hidden --follow --glob "!.git/*"'