An option to make TS right bounded

Currently using TeamSpeak on my left Monitor and it’s kind of annoying to look so far to the left in order to see all Users.

An option to switch the Chat/Stream with the Channel Column would be very nice.

If there’s an option that I am overlooking or an extension, please let me know

I’ve cooked up two different solutions. The first one should work pretty well, the second one is a bit cursed due to the slide out chat overlay.

Code
.tsv-window {
  display: flex;
  flex-direction: row;
}

.sidebar-pane-layout {
  order: 2;
}  

.tsv-activity { 
  order: 1;
}

Code
.tsv-window {
  display: flex;
  flex-direction: row;
}

.sidebar-pane-layout {
  order: 2;
}  

.tsv-activity { 
  order: 1;
} 

.tsv-activity-main {
  order: 2;
}

.tsv-view.tsv-activity-detail {
  order: 1;
}

.ts-activity-slideover-container.tsv-view {
  order: 3;
  position: absolute;
  margin-right: var(--tsv-window-main-width);
}

.ts-activity-slideover-edges-container {
  z-index: 1001;
  position: absolute;
  margin-right: calc(var(--tsv-window-sidebar-width) * -1px);
}

.tsv-activity-slideover {
  order: 3;
  z-index: 500;
}

You can just download a theme from here with random selections and add or replace the content of the custom.css with the code that is pasted above

3 Likes

Wait, so basically the second one is exactly what I am looking for, but replacing the code of a random theme didn’t really work for me.

While the server selection etc. now appears on the right side, the channels are still on the left side:

Have you used the first code block or the second one?

2 Likes

Nope, even tried both

I’ve sent you a contact request to further investigate this :slight_smile:

Update: I’ve updated the code above and verified with him that is is working now.

2 Likes