From b617a6a0d5df3b7dbb86a72c6cb0b875ac396810 Mon Sep 17 00:00:00 2001 From: Mark Wooding Date: Sat, 23 Feb 2019 21:02:51 +0000 Subject: [PATCH] dot/xinitrc: Use modern command-substitution syntax. The old backtick syntax was kind of bletcherous, and it doesn't nest well. --- dot/xinitrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dot/xinitrc b/dot/xinitrc index 51a9cae..76df3f2 100755 --- a/dot/xinitrc +++ b/dot/xinitrc @@ -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 -- 2.11.0