diff --git a/edit/edit.js b/edit/edit.js
index f7e621ba..253b964d 100644
--- a/edit/edit.js
+++ b/edit/edit.js
@@ -300,7 +300,11 @@ lazyInit();
   }
 
   function updateTitle(isDirty = dirty.isDirty()) {
-    document.title = `${isDirty ? '* ' : ''}${style.customName || style.name}`;
+    document.title = `${
+      isDirty ? '* ' : ''
+    }${
+      style.customName || style.name || t('addStyleLabel')
+    } - Stylus`; // the suffix enables external utilities to process our windows e.g. pin on top
   }
 
   function updateLinter(key, value) {