dotfiles

Yes, my $HOME has a git repo now :(

git clone git://git.shimmy1996.com/dotfiles.git
commit fe02b53a8dca43f22bef2c50564c995357ff96a2
parent ce53cc307df3f4d2d62f497cb914919a45bcfafe
Author: Shimmy Xu <shimmy.xu@shimmy1996.com>
Date:   Sat, 16 Nov 2019 21:56:04 -0500

Use $(...) instead of `...`

Diffstat:
M.profile | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/.profile b/.profile
@@ -1,7 +1,7 @@
 #!/usr/bin/env bash
 
 # Keyboard settings.
-if [[ `hostname` == "bluebear" ]]; then
+if [[ $(hostname) == "bluebear" ]]; then
     export XKB_DEFAULT_OPTIONS=ctrl:swapcaps
 fi