Skip to main content

I no longer have a “socials” window; I don’t need this

ID
11f4fcf
date
2024-03-26 15:18:17+00:00
author
Alex Chan <alex@alexwlchan.net>
parent
3a728ac
message
I no longer have a "socials" window; I don't need this
changed files
1 file, 7 deletions

Changed files

macos/close_tabs (3603) → macos/close_tabs (3308)

diff --git a/macos/close_tabs b/macos/close_tabs
index a7e6126..cc8d9ca 100755
--- a/macos/close_tabs
+++ b/macos/close_tabs
@@ -23,13 +23,6 @@ function* tabGenerator() {
     for (tab_index = tab_count - 1; tab_index >= 0; tab_index--) {
       tab = window.tabs[tab_index];
 
-      // I have a window of social media sites that I always have open,
-      // and the last tab is Cohost so this script knows now to close
-      // Twitter/Facebook in that window.
-      if (tab_index === tab_count - 1 && tab.url().startsWith('https://cohost.org')) {
-        break;
-      }
-
       yield [window_index, tab_index, tab.url()];
     }
   }