aboutsummaryrefslogtreecommitdiff
path: root/X
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2022-03-12 02:30:11 +1300
committerTom Ryder <tom@sanctum.geek.nz>2022-03-12 02:30:11 +1300
commitb4b71b18ee321b7fe57a648dce84074ddc8a543d (patch)
tree4bdfa922cfef7b83c8cce4dd8b7d72e0f852d7ce /X
parentMerge branch 'release/v11.12.0' into develop (diff)
downloaddotfiles-b4b71b18ee321b7fe57a648dce84074ddc8a543d.tar.gz
dotfiles-b4b71b18ee321b7fe57a648dce84074ddc8a543d.zip
Correct capitalisation for LibreWolf
Diffstat (limited to 'X')
-rw-r--r--X/xinitrc.d/browser.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/X/xinitrc.d/browser.sh b/X/xinitrc.d/browser.sh
index b6e1d57e..b88724bf 100644
--- a/X/xinitrc.d/browser.sh
+++ b/X/xinitrc.d/browser.sh
@@ -1,6 +1,6 @@
# Choose a GUI browser with some rough heuristics
-# If Librewolf is available, start by assuming that
+# If LibreWolf is available, start by assuming that
if command -v librewolf >/dev/null 2>&1 ; then
BROWSER=librewolf
fi
@@ -11,7 +11,7 @@ if (
exec >/dev/null 2>&1
# Don't switch if it's not there
command -v dillo || exit
- # Switch if Librewolf isn't there
+ # Switch if LibreWolf isn't there
command -v librewolf || exit 0
# Switch if procfs says we have less than 2GB of RAM
awk '$1=="MemTotal:"&&$2<2^20{m++}END{exit!m}' < /proc/meminfo