From baa419250fbc3b370616d58d2ea3ae8f811a30b2 Mon Sep 17 00:00:00 2001 From: "Alex G.S" Date: Fri, 26 Jan 2018 19:39:24 -0500 Subject: [PATCH] feat: enable 'colorBrailleSpinner' on Linux workstations (#113) If a Linux workstation `hasUnicode` and `hasColor` then it should be able to use the `brailleSpinner` and `colorBrailleSpinner` by default. --- themes.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/themes.js b/themes.js index 7c6b5b2..df1184d 100644 --- a/themes.js +++ b/themes.js @@ -52,3 +52,5 @@ themes.setDefault({}, 'ASCII') themes.setDefault({hasColor: true}, 'colorASCII') themes.setDefault({platform: 'darwin', hasUnicode: true}, 'brailleSpinner') themes.setDefault({platform: 'darwin', hasUnicode: true, hasColor: true}, 'colorBrailleSpinner') +themes.setDefault({platform: 'linux', hasUnicode: true}, 'brailleSpinner') +themes.setDefault({platform: 'linux', hasUnicode: true, hasColor: true}, 'colorBrailleSpinner')