aboutsummaryrefslogtreecommitdiff
path: root/Hyperterm/local
diff options
context:
space:
mode:
authorJakob Stendahl <jakob.stendahl@outlook.com>2018-05-20 14:01:24 +0200
committerJakob Stendahl <jakob.stendahl@outlook.com>2018-05-20 14:01:24 +0200
commit75c4df6540c7e963ff48d3e37576956489ef165d (patch)
tree43f553eb4ac34ef2249e7a9a4d66d7795e7ff5ce /Hyperterm/local
parentdadf4f7e58f1d192b869b97798feade6362a101b (diff)
downloaddotfiles-75c4df6540c7e963ff48d3e37576956489ef165d.tar.gz
dotfiles-75c4df6540c7e963ff48d3e37576956489ef165d.zip
Made things work
Diffstat (limited to 'Hyperterm/local')
-rw-r--r--Hyperterm/local/hideTitle/index.js21
1 files changed, 21 insertions, 0 deletions
diff --git a/Hyperterm/local/hideTitle/index.js b/Hyperterm/local/hideTitle/index.js
new file mode 100644
index 0000000..d632cbc
--- /dev/null
+++ b/Hyperterm/local/hideTitle/index.js
@@ -0,0 +1,21 @@
+'use strict'
+
+exports.decorateBrowserOptions = config => {
+ return Object.assign({}, config, {
+ titleBarStyle: '',
+ frame: false,
+ });
+}
+
+exports.decorateConfig = config => {
+ return Object.assign({}, config, {
+ css: `
+ ${config.css || ''}
+ .tabs_borderShim { display: none; }
+ .tabs_list { margin-left: -1px; }
+ .tabs_list { display: none; }
+ //.header_header { display: none; }
+ .terms_terms { margin-top: 0px; }
+ `
+ })
+}