dot/xinitrc: Use modern command-substitution syntax.
authorMark Wooding <mdw@distorted.org.uk>
Sat, 23 Feb 2019 21:02:51 +0000 (21:02 +0000)
committerMark Wooding <mdw@distorted.org.uk>
Sat, 23 Feb 2019 21:02:51 +0000 (21:02 +0000)
The old backtick syntax was kind of bletcherous, and it doesn't nest
well.

dot/xinitrc

index 51a9cae..76df3f2 100755 (executable)
@@ -108,7 +108,7 @@ fi
 ### Iniitial settings.
 
 ## Assume X sessions are secure.
-export __mdw_sechost="`hostname`"
+export __mdw_sechost="$(hostname)"
 
 ## Obtain the screen dimensions.
 case ",$XWIDTH,$XHEIGHT," in